SNOOP_ShowDebugmsgSnoop(): check for NULL function name.
This commit is contained in:
parent
53cfed70bb
commit
6d59b887cd
|
@ -787,7 +787,7 @@ int SNOOP_ShowDebugmsgSnoop(const char *dll, int ord, const char *fname)
|
||||||
itemlen = strlenW(*listitem);
|
itemlen = strlenW(*listitem);
|
||||||
if((itemlen == len && !strncmpiAW( buf, *listitem, len)) ||
|
if((itemlen == len && !strncmpiAW( buf, *listitem, len)) ||
|
||||||
(itemlen == len2 && !strncmpiAW(buf, *listitem, len2)) ||
|
(itemlen == len2 && !strncmpiAW(buf, *listitem, len2)) ||
|
||||||
!strcmpAW(fname, *listitem))
|
(fname && !strcmpAW(fname, *listitem)))
|
||||||
return !show;
|
return !show;
|
||||||
}
|
}
|
||||||
return show;
|
return show;
|
||||||
|
|
Loading…
Reference in New Issue