From: Lars Westermann Date: Wed, 14 Nov 2007 23:19:29 +0000 (+0000) Subject: # Also nulling cursor_open when closing a named cursor X-Git-Tag: RELEASE_1_3_1~637 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35272a63cd20362e94909b3b3014d729249aa4f1;p=php # Also nulling cursor_open when closing a named cursor --- diff --git a/ext/pdo_firebird/firebird_statement.c b/ext/pdo_firebird/firebird_statement.c index d41a40bd4f..f581e24b4a 100644 --- a/ext/pdo_firebird/firebird_statement.c +++ b/ext/pdo_firebird/firebird_statement.c @@ -623,6 +623,7 @@ static int firebird_stmt_cursor_closer(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */ return 0; } *S->name = 0; + S->cursor_open = 0; return 1; } /* }}} */