Don't test !HIWORD values for pointerness.
This commit is contained in:
parent
24ab04ae77
commit
f649dd605e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue