dlls/shell32/shlexec.c

Ge van Geldorp gvg at reactos.com
Sat Feb 12 03:32:39 CST 2005


An example of an error >= 32 is ERROR_INVALID_PARAMETER (87) in
dlls/kernel/process.c line 1767

Changelog:
  Ge van Geldorp <gvg at reactos.com>
  Error numbers >= 32 are to be expected

Index: dlls/shell32/shlexec.c
===================================================================
RCS file: /home/wine/wine/dlls/shell32/shlexec.c,v
retrieving revision 1.59
diff -u -r1.59 shlexec.c
--- dlls/shell32/shlexec.c	23 Dec 2004 17:12:07 -0000	1.59
+++ dlls/shell32/shlexec.c	12 Feb 2005 09:25:35 -0000
@@ -365,7 +365,7 @@
     }
     else if ((retval = GetLastError()) >= 32)
     {
-        FIXME("Strange error set by CreateProcess: %d\n", retval);
+        TRACE("CreateProcess returned error %d\n", retval);
         retval = ERROR_BAD_FORMAT;
     }
 



More information about the wine-patches mailing list