mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[NTOS:MM] Check result of RtlCreateUnicodeString in MmGetFileNameForAddress
CORE-17637
This commit is contained in:
parent
3f16c8615c
commit
376fbc5242
1 changed files with 4 additions and 2 deletions
|
@ -1927,11 +1927,13 @@ MmGetFileNameForAddress(IN PVOID Address,
|
|||
if (NT_SUCCESS(Status))
|
||||
{
|
||||
/* Init modulename */
|
||||
RtlCreateUnicodeString(ModuleName, ModuleNameInformation->Name.Buffer);
|
||||
if (!RtlCreateUnicodeString(ModuleName, ModuleNameInformation->Name.Buffer))
|
||||
Status = STATUS_INSUFFICIENT_RESOURCES;
|
||||
|
||||
/* Free temp taged buffer from MmGetFileNameForFileObject() */
|
||||
ExFreePoolWithTag(ModuleNameInformation, TAG_MM);
|
||||
DPRINT("Found ModuleName %S by address %p\n", ModuleName->Buffer, Address);
|
||||
|
||||
DPRINT("Found ModuleName %wZ by address %p\n", ModuleName, Address);
|
||||
}
|
||||
|
||||
/* Return status */
|
||||
|
|
Loading…
Reference in a new issue