From: Kalle Sommer Nielsen Date: Tue, 8 Sep 2009 01:44:37 +0000 (+0000) Subject: Fixed ext/interbase build X-Git-Tag: php-5.4.0alpha1~191^2~2683 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b2f1a3e8650855d7e50980596b4fcf761c54fbdf;p=php Fixed ext/interbase build --- 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)) {