[PATCH 1/1] ntdll: Move SEH exception info logs back to the seh channel.

Tim Clem wine at gitlab.winehq.org
Mon Jun 13 15:40:46 CDT 2022


From: Tim Clem <tclem at codeweavers.com>

These were accidentally moved as part of the introduction of +unwind.

Signed-off-by: Tim Clem <tclem at codeweavers.com>
---
 dlls/ntdll/signal_x86_64.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ntdll/signal_x86_64.c b/dlls/ntdll/signal_x86_64.c
index 7e77329363c..fef163ac629 100644
--- a/dlls/ntdll/signal_x86_64.c
+++ b/dlls/ntdll/signal_x86_64.c
@@ -510,7 +510,7 @@ NTSTATUS WINAPI dispatch_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
                  rec->ExceptionCode, rec->ExceptionFlags, rec->ExceptionAddress,
                  (void *)context->Rip, GetCurrentThreadId() );
     for (c = 0; c < min( EXCEPTION_MAXIMUM_PARAMETERS, rec->NumberParameters ); c++)
-        TRACE( " info[%d]=%016I64x\n", c, rec->ExceptionInformation[c] );
+        TRACE_(seh)( " info[%d]=%016I64x\n", c, rec->ExceptionInformation[c] );
 
     if (rec->ExceptionCode == EXCEPTION_WINE_STUB)
     {
-- 
GitLab

https://gitlab.winehq.org/wine/wine/-/merge_requests/238



More information about the wine-devel mailing list