Use TRACE rather than FIXME for check_resource_write.
This commit is contained in:
parent
17d5e07ec6
commit
3c705bf008
|
@ -438,7 +438,7 @@ inline static BOOL check_resource_write( const EXCEPTION_RECORD *rec )
|
|||
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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue