We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deb5997 commit 66e4ba1Copy full SHA for 66e4ba1
1 file changed
Zend/zend_objects_API.c
@@ -44,8 +44,7 @@ ZEND_API void ZEND_FASTCALL zend_objects_store_call_destructors(zend_objects_sto
44
{
45
EG(flags) |= EG_FLAGS_OBJECT_STORE_NO_REUSE;
46
if (objects->top > 1) {
47
- uint32_t i;
48
- for (i = 1; i < objects->top; i++) {
+ for (uint32_t i = 1; i < objects->top; i++) {
49
zend_object *obj = objects->object_buckets[i];
50
if (IS_OBJ_VALID(obj)) {
51
if (!(OBJ_FLAGS(obj) & IS_OBJ_DESTRUCTOR_CALLED)) {
0 commit comments