[PATCH] krnl386: Fix a mistyped NULL check in WOWTHUNK_Init().

Zebediah Figura zfigura at codeweavers.com
Fri Oct 8 12:20:17 CDT 2021


Fixes Collins English Dictionary, reported in
https://bugs.winehq.org/show_bug.cgi?id=51802.

Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
I didn't catch this when testing, because failure from DllEntryPoint is
currently just ignored...

 dlls/krnl386.exe16/wowthunk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/krnl386.exe16/wowthunk.c b/dlls/krnl386.exe16/wowthunk.c
index ca3c57f8e0b..8cc1fa248e6 100644
--- a/dlls/krnl386.exe16/wowthunk.c
+++ b/dlls/krnl386.exe16/wowthunk.c
@@ -79,7 +79,7 @@ BOOL WOWTHUNK_Init(void)
                                              LDT_FLAGS_CODE | LDT_FLAGS_32BIT );
     cbclientex_selector = SELECTOR_AllocBlock( cbclientex_ret, cbclientex_ret_end - cbclientex_ret,
                                                LDT_FLAGS_CODE | LDT_FLAGS_32BIT );
-    if (!codesel || cbclient_selector || !cbclientex_selector)
+    if (!codesel || !cbclient_selector || !cbclientex_selector)
         return FALSE;
 
       /* Patch the return addresses for CallTo16 routines */
-- 
2.33.0




More information about the wine-devel mailing list