Commit 6d59b887 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard

SNOOP_ShowDebugmsgSnoop(): check for NULL function name.

parent 53cfed70
......@@ -787,7 +787,7 @@ int SNOOP_ShowDebugmsgSnoop(const char *dll, int ord, const char *fname)
itemlen = strlenW(*listitem);
if((itemlen == len && !strncmpiAW( buf, *listitem, len)) ||
(itemlen == len2 && !strncmpiAW(buf, *listitem, len2)) ||
!strcmpAW(fname, *listitem))
(fname && !strcmpAW(fname, *listitem)))
return !show;
}
return show;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment