mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 13:03:41 -04:00
15 lines
527 B
Plaintext
15 lines
527 B
Plaintext
$NetBSD: patch-ag,v 1.1 2009/10/21 04:21:27 taca Exp $
|
|
|
|
* Call function_return() with IGNORE_THREAD since __SQLGetInfo() is already
|
|
called and __SQLGetInfo() calls function_return().
|
|
|
|
--- DriverManager/SQLGetInfo.c.orig 2008-09-29 23:02:45.000000000 +0900
|
|
+++ DriverManager/SQLGetInfo.c
|
|
@@ -611,5 +611,5 @@ SQLRETURN SQLGetInfo( SQLHDBC connection
|
|
connection -> msg );
|
|
}
|
|
|
|
- return function_return( SQL_HANDLE_DBC, connection, ret );
|
|
+ return function_return( IGNORE_THREAD, connection, ret );
|
|
}
|