Skip to content

Commit a64e12e

Browse files
committed
pefree() -> efree()
1 parent c6e415a commit a64e12e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_hash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,7 @@ ZEND_API void zend_array_destroy(HashTable *ht)
11391139
} else if (EXPECTED(!(ht->u.flags & HASH_FLAG_INITIALIZED))) {
11401140
goto free_ht;
11411141
}
1142-
pefree(ht->arData, ht->u.flags & HASH_FLAG_PERSISTENT);
1142+
efree(ht->arData);
11431143
free_ht:
11441144
FREE_HASHTABLE(ht);
11451145
}

0 commit comments

Comments
 (0)