Use TRACE rather than FIXME for check_resource_write.

This commit is contained in:
Mike Hearn 2004-06-01 19:45:15 +00:00 committed by Alexandre Julliard
parent 17d5e07ec6
commit 3c705bf008
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}