Skip to content

Commit 99e5d6c

Browse files
committed
Merge branch 'PHP-7.0' of git.php.net:php-src into PHP-7.0
* 'PHP-7.0' of git.php.net:php-src:
2 parents eb976b8 + 936cafe commit 99e5d6c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ PHP NEWS
3030
- SPL:
3131
. Fixed bug #73423 (Reproducible crash with GDB backtrace). (Laruence)
3232

33+
- SQLite3:
34+
. Fixed bug #73530 (Unsetting result set may reset other result set). (cmb)
35+
3336
- XML:
3437
. Fixed bug #72135 (malformed XML causes fault) (edgarsandi)
3538

ext/sqlite3/sqlite3.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2167,9 +2167,6 @@ static void php_sqlite3_result_object_free_storage(zend_object *object) /* {{{ *
21672167
}
21682168

21692169
if (!Z_ISNULL(intern->stmt_obj_zval)) {
2170-
if (intern->stmt_obj && intern->stmt_obj->initialised) {
2171-
sqlite3_reset(intern->stmt_obj->stmt);
2172-
}
21732170

21742171
zval_ptr_dtor(&intern->stmt_obj_zval);
21752172
}

0 commit comments

Comments
 (0)