Commit e658ee55 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard

SNOOP_PrintArg: don't try to decipher snoop args when seh chanel is

on.
parent 4431e416
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#include "excpt.h" #include "excpt.h"
WINE_DEFAULT_DEBUG_CHANNEL(snoop); WINE_DEFAULT_DEBUG_CHANNEL(snoop);
WINE_DECLARE_DEBUG_CHANNEL(seh);
static WINE_EXCEPTION_FILTER(page_fault) static WINE_EXCEPTION_FILTER(page_fault)
{ {
...@@ -216,7 +217,7 @@ static void SNOOP_PrintArg(DWORD x) ...@@ -216,7 +217,7 @@ static void SNOOP_PrintArg(DWORD x)
int i,nostring; int i,nostring;
DPRINTF("%08lx",x); DPRINTF("%08lx",x);
if ( !HIWORD(x) ) return; /* trivial reject to avoid faults */ if (!HIWORD(x) || TRACE_ON(seh)) return; /* trivial reject to avoid faults */
__TRY __TRY
{ {
LPBYTE s=(LPBYTE)x; LPBYTE s=(LPBYTE)x;
......
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