File tree 1 file changed +0
-12
lines changed
1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -2163,10 +2163,6 @@ static void php_sqlite3_object_free_storage(zend_object *object) /* {{{ */
2163
2163
php_sqlite3_func * func ;
2164
2164
php_sqlite3_collation * collation ;
2165
2165
2166
- if (!intern ) {
2167
- return ;
2168
- }
2169
-
2170
2166
/* Release function_name from authorizer */
2171
2167
if (ZEND_FCC_INITIALIZED (intern -> authorizer_fcc )) {
2172
2168
zend_fcc_dtor (& intern -> authorizer_fcc );
@@ -2262,10 +2258,6 @@ static void php_sqlite3_stmt_object_free_storage(zend_object *object) /* {{{ */
2262
2258
{
2263
2259
php_sqlite3_stmt * intern = php_sqlite3_stmt_from_obj (object );
2264
2260
2265
- if (!intern ) {
2266
- return ;
2267
- }
2268
-
2269
2261
if (intern -> bound_params ) {
2270
2262
zend_hash_destroy (intern -> bound_params );
2271
2263
FREE_HASHTABLE (intern -> bound_params );
@@ -2289,10 +2281,6 @@ static void php_sqlite3_result_object_free_storage(zend_object *object) /* {{{ *
2289
2281
{
2290
2282
php_sqlite3_result * intern = php_sqlite3_result_from_obj (object );
2291
2283
2292
- if (!intern ) {
2293
- return ;
2294
- }
2295
-
2296
2284
sqlite3result_clear_column_names_cache (intern );
2297
2285
2298
2286
if (!Z_ISNULL (intern -> stmt_obj_zval )) {
You can’t perform that action at this time.
0 commit comments