Commit 3c705bf0 authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

Use TRACE rather than FIXME for check_resource_write.

parent 17d5e07e
...@@ -438,7 +438,7 @@ inline static BOOL check_resource_write( const EXCEPTION_RECORD *rec ) ...@@ -438,7 +438,7 @@ inline static BOOL check_resource_write( const EXCEPTION_RECORD *rec )
IMAGE_DIRECTORY_ENTRY_RESOURCE, &size ))) IMAGE_DIRECTORY_ENTRY_RESOURCE, &size )))
return FALSE; return FALSE;
if (addr < rsrc || (char *)addr >= (char *)rsrc + 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 ); VirtualProtect( rsrc, size, PAGE_WRITECOPY, NULL );
return TRUE; return TRUE;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment