]> git.p6c8.net - selfforum.git/blobdiff - selfforum-cgi/shared/Arc/Starter.pm
fixed the "strict subs" error
[selfforum.git] / selfforum-cgi / shared / Arc / Starter.pm
index c7fe64e8ae6b736acf35b840127147c6d8467bda..ea923a7dd2a449fc8492ea180b6818fb158ac939 100644 (file)
@@ -48,14 +48,16 @@ sub win32_start ($) {
   require Win32::Process; Win32::Process -> import ('NORMAL_PRIORITY_CLASS', 'DETACHED_PROCESS');
   require Win32;
 
-  Win32::Process::Create(
-    $p,
-    $x,
-    "perl $sev",
-    0,
-    NORMAL_PRIORITY_CLASS | DETACHED_PROCESS,
-    "."
-  ) or warn 'could not execute severancer: '.Win32::FormatMessage(Win32::GetLastError());
+  eval q{
+    Win32::Process::Create(
+      $p,
+      $x,
+      "perl $sev",
+      0,
+      NORMAL_PRIORITY_CLASS | DETACHED_PROCESS,
+      "."
+    ) or warn 'could not execute severancer: '.Win32::FormatMessage(Win32::GetLastError());
+  }
 }
 
 ### posix_start () #############################################################

patrick-canterino.de