mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[RTL]
- Victor Martinez Calvo: Add a missing status check in RtlpQueryRemoteProcessModules. - Aleksey Bragin: The code is quite ugly, adding this check makes it just a little bit less uglier :-) CORE-7059 #resolve #comment Committed in 59554, thanks. svn path=/trunk/; revision=59554
This commit is contained in:
parent
1ebd4c1b0c
commit
8789365b9a
1 changed files with 7 additions and 0 deletions
|
@ -159,6 +159,13 @@ RtlpQueryRemoteProcessModules(HANDLE ProcessHandle,
|
|||
sizeof(LDR_DATA_TABLE_ENTRY),
|
||||
NULL);
|
||||
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
/* failure */
|
||||
DPRINT( "NtReadVirtualMemory 3 0x%lx \n", Status);
|
||||
return Status;
|
||||
}
|
||||
|
||||
/* Import module name from remote Process user space. */
|
||||
Unicode.Length = lmModule.FullDllName.Length;
|
||||
Unicode.MaximumLength = lmModule.FullDllName.MaximumLength;
|
||||
|
|
Loading…
Reference in a new issue