File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,10 @@ PHP NEWS
38
38
- Reflection:
39
39
. Fixed bug #46103 (ReflectionObject memory leak). (Nikita)
40
40
41
+ - SQLite3:
42
+ . Reverted fix for bug #73530 (Unsetting result set may reset other result
43
+ set). (cmb)
44
+
41
45
- Standard:
42
46
. Fixed bug #73594 (dns_get_record does not populate $additional out parameter).
43
47
(Bruce Weirdan)
Original file line number Diff line number Diff line change @@ -2167,6 +2167,9 @@ static void php_sqlite3_result_object_free_storage(zend_object *object) /* {{{ *
2167
2167
}
2168
2168
2169
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
+ }
2170
2173
2171
2174
zval_ptr_dtor (& intern -> stmt_obj_zval );
2172
2175
}
You can’t perform that action at this time.
0 commit comments