From b2f1a3e8650855d7e50980596b4fcf761c54fbdf Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Tue, 8 Sep 2009 01:44:37 +0000 Subject: [PATCH] Fixed ext/interbase build --- ext/interbase/ibase_query.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ext/interbase/ibase_query.c b/ext/interbase/ibase_query.c index 657ed580dd..5488f16781 100644 --- a/ext/interbase/ibase_query.c +++ b/ext/interbase/ibase_query.c @@ -121,9 +121,11 @@ static void _php_ibase_free_xsqlda(XSQLDA *sqlda) /* {{{ */ static void _php_ibase_free_stmt_handle(ibase_db_link *link, isc_stmt_handle stmt TSRMLS_DC) /* {{{ */ { if (stmt) { - IBDEBUG("Dropping statement handle (free_stmt_handle)..."); /* Only free statement if db-connection is still open */ char db_items[] = {isc_info_page_size}, res_buf[40]; + + IBDEBUG("Dropping statement handle (free_stmt_handle)..."); + if (SUCCESS == isc_database_info(IB_STATUS, &link->handle, sizeof(db_items), db_items, sizeof(res_buf), res_buf)) { if (isc_dsql_free_statement(IB_STATUS, &stmt, DSQL_drop)) { -- 2.50.1