From: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- dlls/odbc32/proxyodbc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/odbc32/proxyodbc.c b/dlls/odbc32/proxyodbc.c index 6d4772f7f11..7e3999adff6 100644 --- a/dlls/odbc32/proxyodbc.c +++ b/dlls/odbc32/proxyodbc.c @@ -642,7 +642,7 @@ static SQLRETURN bind_col_win32( struct handle *handle, SQLUSMALLINT column, SQL SQLLEN buflen, SQLLEN *retlen ) { if (handle->win32_funcs->SQLBindCol) - return SQLBindCol( handle->win32_handle, column, type, value, buflen, retlen ); + return handle->win32_funcs->SQLBindCol( handle->win32_handle, column, type, value, buflen, retlen ); return SQL_ERROR; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6247