Skip to content

Commit 1a63e7b

Browse files
committed
Address review comment
1 parent fd92567 commit 1a63e7b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ext/pdo/pdo_stmt.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -662,8 +662,8 @@ static bool pdo_call_fetch_object_constructor(zend_function *constructor, HashTa
662662
return failed;
663663
}
664664

665-
/* perform a fetch.
666-
* Stores values into return_value according to HOW. */
665+
/* Performs a row fetch, the value is stored into return_value according to HOW.
666+
* retun_value MUST be safely destroyable as it will be freed if an error occurs. */
667667
static bool do_fetch(pdo_stmt_t *stmt, zval *return_value, enum pdo_fetch_type how, enum pdo_fetch_orientation ori, zend_long offset, zval *group_key) /* {{{ */
668668
{
669669
int flags;
@@ -2053,6 +2053,7 @@ static void pdo_stmt_iter_dtor(zend_object_iterator *iter)
20532053

20542054
if (!Z_ISUNDEF(I->fetch_ahead)) {
20552055
zval_ptr_dtor(&I->fetch_ahead);
2056+
ZVAL_UNDEF(&I->fetch_ahead);
20562057
}
20572058
}
20582059

@@ -2093,6 +2094,7 @@ static void pdo_stmt_iter_move_forwards(zend_object_iterator *iter)
20932094

20942095
if (!Z_ISUNDEF(I->fetch_ahead)) {
20952096
zval_ptr_dtor(&I->fetch_ahead);
2097+
ZVAL_UNDEF(&I->fetch_ahead);
20962098
}
20972099

20982100
if (!do_fetch(stmt, &I->fetch_ahead, PDO_FETCH_USE_DEFAULT,

0 commit comments

Comments
 (0)