List:Commits« Previous MessageNext Message »
From:jwinstead Date:June 12 2007 5:00pm
Subject:Connector/ODBC 3.51 commit: r493 - trunk/test
View as plain text  
Modified:
   trunk/test/my_result.c
Log:
Add missing SQLFreeStmt that could cause failure with driver manager


Modified: trunk/test/my_result.c
===================================================================
--- trunk/test/my_result.c	2007-06-12 16:40:39 UTC (rev 492)
+++ trunk/test/my_result.c	2007-06-12 17:00:02 UTC (rev 493)
@@ -1777,6 +1777,8 @@
 
   expect_stmt(hstmt, SQLFetch(hstmt), SQL_NO_DATA_FOUND);
 
+  ok_stmt(hstmt, SQLFreeStmt(hstmt, SQL_CLOSE));
+
   ok_sql(hstmt, "DROP TABLE IF EXISTS t_bug6157");
   return OK;
 }

Thread
Connector/ODBC 3.51 commit: r493 - trunk/testjwinstead12 Jun