14 May
2024
14 May
'24
11:55 a.m.
From: Hans Leidekker <hans(a)codeweavers.com> --- dlls/odbc32/unixlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/odbc32/unixlib.c b/dlls/odbc32/unixlib.c index 3b94180c5bc..b9386a9d2a3 100644 --- a/dlls/odbc32/unixlib.c +++ b/dlls/odbc32/unixlib.c @@ -173,7 +173,7 @@ static NTSTATUS load_odbc(void); static NTSTATUS odbc_process_attach( void *args ) { - if (!load_odbc()) return STATUS_DLL_NOT_FOUND; + if (load_odbc()) return STATUS_DLL_NOT_FOUND; return STATUS_SUCCESS; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/5640