We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb976b8 + 936cafe commit 99e5d6cCopy full SHA for 99e5d6c
NEWS
@@ -30,6 +30,9 @@ PHP NEWS
30
- SPL:
31
. Fixed bug #73423 (Reproducible crash with GDB backtrace). (Laruence)
32
33
+- SQLite3:
34
+ . Fixed bug #73530 (Unsetting result set may reset other result set). (cmb)
35
+
36
- XML:
37
. Fixed bug #72135 (malformed XML causes fault) (edgarsandi)
38
ext/sqlite3/sqlite3.c
@@ -2167,9 +2167,6 @@ static void php_sqlite3_result_object_free_storage(zend_object *object) /* {{{ *
2167
}
2168
2169
if (!Z_ISNULL(intern->stmt_obj_zval)) {
2170
- if (intern->stmt_obj && intern->stmt_obj->initialised) {
2171
- sqlite3_reset(intern->stmt_obj->stmt);
2172
- }
2173
2174
zval_ptr_dtor(&intern->stmt_obj_zval);
2175
0 commit comments