2012-11-06 10:45:33 +01:00
|
|
|
Index: DriverManager/SQLConnect.c
|
|
|
|
===================================================================
|
|
|
|
--- DriverManager/SQLConnect.c.orig
|
2007-01-16 00:40:12 +01:00
|
|
|
+++ DriverManager/SQLConnect.c
|
2012-11-06 10:45:33 +01:00
|
|
|
@@ -919,6 +919,7 @@ static void odbc_dlclose( void *handle )
|
2007-01-16 00:40:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
mutex_lib_exit();
|
|
|
|
+ return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-11-06 10:45:33 +01:00
|
|
|
Index: cur/SQLEndTran.c
|
|
|
|
===================================================================
|
|
|
|
--- cur/SQLEndTran.c.orig
|
2007-01-16 00:40:12 +01:00
|
|
|
+++ cur/SQLEndTran.c
|
2012-11-06 10:45:33 +01:00
|
|
|
@@ -78,4 +78,5 @@ SQLRETURN CLEndTran( SQLSMALLINT handle_
|
2007-01-16 00:40:12 +01:00
|
|
|
default:
|
|
|
|
return SQL_ERROR;
|
|
|
|
}
|
|
|
|
+ return 0;
|
|
|
|
}
|
2012-11-06 10:45:33 +01:00
|
|
|
Index: odbcinst/SQLSetConfigMode.c
|
|
|
|
===================================================================
|
|
|
|
--- odbcinst/SQLSetConfigMode.c.orig
|
2007-01-16 00:40:12 +01:00
|
|
|
+++ odbcinst/SQLSetConfigMode.c
|
2012-11-06 10:45:33 +01:00
|
|
|
@@ -24,6 +24,7 @@ static int __config_mode = ODBC_BOTH_DSN
|
|
|
|
void __set_config_mode( int mode )
|
2007-01-16 00:40:12 +01:00
|
|
|
{
|
|
|
|
__config_mode = mode;
|
|
|
|
+ return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-06 10:45:33 +01:00
|
|
|
int __get_config_mode( void )
|