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.
1 parent 2bfeb4a commit df5d486Copy full SHA for df5d486
interbase.c
@@ -1206,11 +1206,16 @@ PHP_FUNCTION(ibase_close)
1206
}
1207
1208
/* we have at least 3 additional references to this resource ??? */
1209
- if (GC_REFCOUNT(link_res) < 4) {
1210
- zend_list_close(link_res);
1211
- } else {
1212
- zend_list_delete(link_res);
1213
- }
+ // Keep this code for now. In case we decide to put it under a some kind of
+ // legacy flag
+ // if (GC_REFCOUNT(link_res) < 4) {
+ // zend_list_close(link_res);
+ // } else {
1214
+ // zend_list_delete(link_res);
1215
+ // }
1216
+
1217
+ zend_list_close(link_res);
1218
1219
RETURN_TRUE;
1220
1221
/* }}} */
0 commit comments