This commit is contained in:
Bill Zissimopoulos
2015-11-19 17:26:53 -08:00
parent 9045db1026
commit 28fd09e70f
3 changed files with 18 additions and 3 deletions

View File

@ -14,7 +14,7 @@ static ANSI_STRING DbgBreakPointInc = RTL_CONSTANT_STRING("Fsp*");
BOOLEAN HasDbgBreakPoint(const char *Function)
{
/* poor man's breakpoints; work around 32 breakpoints kernel limit */
if (KeGetCurrentIrql() > APC_LEVEL)
if (KeGetCurrentIrql() > APC_LEVEL) /* FsRtlIsDbcsInExpression restriction */
return TRUE;
ANSI_STRING Name;
RtlInitAnsiString(&Name, Function);