13 Jul
2024
13 Jul
'24
1:40 a.m.
Elizabeth Figura (@zfigura) commented about dlls/odbc32/proxyodbc.c:
} else if ((env && env->win32_handle) || (con && con->win32_handle) || (stmt && stmt->win32_handle)) { - ret = env->win32_funcs->SQLError( env->win32_handle, con->win32_handle, stmt->win32_handle, SqlState, - NativeError, MessageText, BufferLength, TextLength ); + ret = env->win32_funcs->SQLError( env ? env->win32_handle : NULL,
Do we need to retrieve win32_funcs from a different handle in that case? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6063#note_76059