From e666422ebf51b9433db1f413af38962a0937a69e Mon Sep 17 00:00:00 2001 From: Hiroshi Inoue Date: Sat, 10 Mar 2001 03:34:57 +0000 Subject: 1)Allow the access to indexes with up to 16 keys. 2)Fix some memory leaks. 3)Change some bogus error messages. --- src/interfaces/odbc/statement.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/interfaces/odbc/statement.c') diff --git a/src/interfaces/odbc/statement.c b/src/interfaces/odbc/statement.c index 8a8d5523ad..6c0d855217 100644 --- a/src/interfaces/odbc/statement.c +++ b/src/interfaces/odbc/statement.c @@ -404,7 +404,8 @@ mylog("recycle statement: self= %u\n", self); conn = SC_get_conn(self); if ( ! CC_is_in_autocommit(conn) && CC_is_in_trans(conn)) { - CC_send_query(conn, "ABORT", NULL); + QResultClass *res = CC_send_query(conn, "ABORT", NULL); + QR_Destructor(res); CC_set_no_trans(conn); } break; -- cgit v1.2.1