Commit f649dd60 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Don't test !HIWORD values for pointerness.

parent 24ab04ae
......@@ -209,6 +209,10 @@ SNOOP_PrintArg(DWORD x) {
int i,nostring;
char * volatile ret=0;
if ( !HIWORD(x) ) { /* trivial reject to avoid faults */
sprintf(buf,"%08lx",x);
return buf;
}
__TRY{
LPBYTE s=(LPBYTE)x;
i=0;nostring=0;
......
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