List:Commits« Previous MessageNext Message »
From:jwinstead Date:July 11 2007 3:50pm
Subject:Connector/ODBC 3.51 commit: r562 - trunk/test
View as plain text  
Modified:
   trunk/test/my_blob.c
Log:
Add missing statement close to test


Modified: trunk/test/my_blob.c
===================================================================
--- trunk/test/my_blob.c	2007-07-11 05:28:27 UTC (rev 561)
+++ trunk/test/my_blob.c	2007-07-11 15:50:44 UTC (rev 562)
@@ -778,6 +778,8 @@
   ok_stmt(hstmt, SQLGetData(hstmt, 1, SQL_C_BINARY, blobcheck, bsize, NULL));
   is(!memcmp(blob, blobcheck, bsize));
 
+  ok_stmt(hstmt, SQLFreeStmt(hstmt, SQL_CLOSE));
+
   ok_sql(hstmt, "drop table if exists t_bug10562");
   free(blob);
   free(blobcheck);

Thread
Connector/ODBC 3.51 commit: r562 - trunk/testjwinstead11 Jul