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 @@ -45,6 +45,10 @@ PHP NEWS
45
45
separator). (Bob)
46
46
. Fixed bug #73704 (phpdbg shows the wrong line in files with shebang). (Bob)
47
47
48
+ - SQLite3:
49
+ . Reverted fix for bug #73530 (Unsetting result set may reset other result
50
+ set). (cmb)
51
+
48
52
- Standard:
49
53
. Fixed bug #73594 (dns_get_record does not populate $additional out parameter).
50
54
(Bruce Weirdan)
Original file line number Diff line number Diff line change @@ -2145,6 +2145,9 @@ static void php_sqlite3_result_object_free_storage(zend_object *object) /* {{{ *
2145
2145
}
2146
2146
2147
2147
if (!Z_ISNULL (intern -> stmt_obj_zval )) {
2148
+ if (intern -> stmt_obj && intern -> stmt_obj -> initialised ) {
2149
+ sqlite3_reset (intern -> stmt_obj -> stmt );
2150
+ }
2148
2151
2149
2152
zval_ptr_dtor (& intern -> stmt_obj_zval );
2150
2153
}
You can’t perform that action at this time.
0 commit comments