Commit 143db5ce authored by Alexandre Julliard's avatar Alexandre Julliard

Don't bother looking for a resource directory in free memory areas.

parent 9b57a950
......@@ -438,6 +438,7 @@ inline static BOOL check_resource_write( const EXCEPTION_RECORD *rec )
if (!rec->ExceptionInformation[0]) return FALSE; /* not a write access */
addr = (void *)rec->ExceptionInformation[1];
if (!VirtualQuery( addr, &info, sizeof(info) )) return FALSE;
if (info.State == MEM_FREE) return FALSE;
if (!(rsrc = RtlImageDirectoryEntryToData( (HMODULE)info.AllocationBase, TRUE,
IMAGE_DIRECTORY_ENTRY_RESOURCE, &size )))
return FALSE;
......
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