diff options
Diffstat (limited to 'src/interfaces/odbc/statement.c')
-rw-r--r-- | src/interfaces/odbc/statement.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/odbc/statement.c b/src/interfaces/odbc/statement.c index 8a8d5523ad6..6c0d8552176 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; |