From: Hans Leidekker hans@codeweavers.com
Spotted by Alistair Leslie-Hughes. --- 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 f4e154eff8a..4fd1ee123e0 100644 --- a/dlls/odbc32/proxyodbc.c +++ b/dlls/odbc32/proxyodbc.c @@ -773,7 +773,7 @@ static SQLRETURN bind_col_win32( struct statement *stmt, SQLUSMALLINT column, SQ SQLLEN buflen, SQLLEN *retlen ) { if (stmt->hdr.win32_funcs->SQLBindCol) - return SQLBindCol( stmt->hdr.win32_handle, column, type, value, buflen, retlen ); + return stmt->hdr.win32_funcs->SQLBindCol( stmt->hdr.win32_handle, column, type, value, buflen, retlen ); return SQL_ERROR; }