ntoskrnl.exe: Be more verbose in MmGetSystemRoutineAddress.

oldstable
André Hentschel 2011-02-25 17:50:44 +01:00 committed by Alexandre Julliard
parent 3091f3464e
commit 13fc9ce134
1 changed files with 4 additions and 1 deletions

View File

@ -1523,7 +1523,10 @@ PVOID WINAPI MmGetSystemRoutineAddress(PUNICODE_STRING SystemRoutineName)
RtlFreeAnsiString( &routineNameA );
}
TRACE( "%s -> %p\n", debugstr_us(SystemRoutineName), pFunc );
if (pFunc)
TRACE( "%s -> %p\n", debugstr_us(SystemRoutineName), pFunc );
else
FIXME( "%s not found\n", debugstr_us(SystemRoutineName) );
return pFunc;
}