mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
- MmUnmapViewOfSection: Unlock address space before notifying debugger. Fixes a case where OllyDbg deadlocks in a GateWait while trying to read virtual memory.
svn path=/trunk/; revision=41356
This commit is contained in:
@@ -4148,10 +4148,11 @@ MmUnmapViewOfSection(PEPROCESS Process,
|
||||
Status = MmUnmapViewOfSegment(AddressSpace, BaseAddress);
|
||||
}
|
||||
|
||||
MmUnlockAddressSpace(AddressSpace);
|
||||
|
||||
/* Notify debugger */
|
||||
if (ImageBaseAddress) DbgkUnMapViewOfSection(ImageBaseAddress);
|
||||
|
||||
MmUnlockAddressSpace(AddressSpace);
|
||||
return(STATUS_SUCCESS);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user