Don't test !HIWORD values for pointerness.

This commit is contained in:
Marcus Meissner 2000-11-25 01:21:39 +00:00 committed by Alexandre Julliard
parent 24ab04ae77
commit f649dd605e
1 changed files with 4 additions and 0 deletions

View File

@ -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;