Use TRACE rather than FIXME for check_resource_write

Mike Hearn mh at codeweavers.com
Mon May 31 19:01:29 CDT 2004


No need for this to be a fixme, we can't fix broken apps anyway and it
just confuses people.

Mike Hearn <mh at codeweavers.com>
Use TRACE rather than FIXME for check_resource_write

Index: except.c
===================================================================
RCS file: /home/wine/wine/dlls/kernel/except.c,v
retrieving revision 1.5
diff -u -r1.5 except.c
--- except.c    12 Mar 2004 02:05:11 -0000      1.5
+++ except.c    31 May 2004 23:58:49 -0000
@@ -438,7 +438,7 @@
                                               IMAGE_DIRECTORY_ENTRY_RESOURCE, &size )))
         return FALSE;
     if (addr < rsrc || (char *)addr >= (char *)rsrc + size) return FALSE;
-    FIXME( "Broken app is writing to the resource data, enabling work-around\n" );
+    TRACE( "Broken app is writing to the resource data, enabling work-around\n" );
     VirtualProtect( rsrc, size, PAGE_WRITECOPY, NULL );
     return TRUE;
 }





More information about the wine-patches mailing list