File tree Expand file tree Collapse file tree 3 files changed +8
-32
lines changed Expand file tree Collapse file tree 3 files changed +8
-32
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ PHP NEWS
9
9
. Fixed bug #68447 (grapheme_extract take an extra trailing character).
10
10
(SATŌ Kentarō)
11
11
12
+ - SQLite3:
13
+ . Reverted fix for bug #73530 (Unsetting result set may reset other result
14
+ set). (cmb)
15
+
12
16
08 Dec 2016, PHP 5.6.29
13
17
14
18
- Mbstring:
Original file line number Diff line number Diff line change @@ -2184,6 +2184,10 @@ static void php_sqlite3_result_object_free_storage(void *object TSRMLS_DC) /* {{
2184
2184
}
2185
2185
2186
2186
if (intern -> stmt_obj_zval ) {
2187
+ if (intern -> stmt_obj -> initialised ) {
2188
+ sqlite3_reset (intern -> stmt_obj -> stmt );
2189
+ }
2190
+
2187
2191
if (intern -> is_prepared_statement == 0 ) {
2188
2192
zval_dtor (intern -> stmt_obj_zval );
2189
2193
FREE_ZVAL (intern -> stmt_obj_zval );
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments