From eb1811cfd73a8cd9f6d8063528a1ba3c7f4cfe68 Mon Sep 17 00:00:00 2001 From: chrchr-github Date: Tue, 18 Jun 2024 22:46:14 +0200 Subject: [PATCH] Fix test --- test/cfg/windows.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/cfg/windows.cpp b/test/cfg/windows.cpp index 884431a621f..a4885195ac9 100644 --- a/test/cfg/windows.cpp +++ b/test/cfg/windows.cpp @@ -1163,11 +1163,12 @@ BOOL MyEnableWindow(HWND hWnd, BOOL bEnable) { } int SEH_filter(unsigned int code, struct _EXCEPTION_POINTERS* ep); +int SEH_throwing_func(); void SEH_knownConditionTrueFalse() { // #8434 int r = 0; __try { - r = h(); + r = SEH_throwing_func(); } __except (SEH_filter(GetExceptionCode(), GetExceptionInformation())) { r = 1;