Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion loader/compat_php.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ZEND_API zval *ZEND_FASTCALL zend_hash_update(HashTable *ht, zend_string *key, z
ZEND_API zval *ZEND_FASTCALL _zend_hash_update(HashTable *ht, zend_string *key, zval *pData) __attribute__((weak));
ZEND_API zend_result ZEND_FASTCALL zend_hash_str_del(HashTable *ht, const char *str, size_t len) __attribute__((weak));
ZEND_API zval* ZEND_FASTCALL zend_hash_str_find(const HashTable *ht, const char *key, size_t len) __attribute__((weak));
ZEND_API void * __zend_malloc(size_t len) __attribute__((weak));
extern __typeof__(__zend_malloc) __zend_malloc __attribute__((weak));

static bool ddloader_zstr_is_interned(int php_api_no, zend_string *key) {
if (php_api_no <= 20170718) { // PHP 7.0 - 7.2
Expand Down
Loading