mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Fixed compilation on Windows
This commit is contained in:
parent
bcc677789c
commit
b4c2bd2277
5 changed files with 12 additions and 8 deletions
|
@ -146,8 +146,9 @@ static int LoadDirectory(HashTable *directories, HKEY key, char *path, int path_
|
|||
return ret;
|
||||
}
|
||||
|
||||
static void delete_internal_hashtable(void *data)
|
||||
static void delete_internal_hashtable(zval *zv)
|
||||
{
|
||||
void *data = Z_PTR_P(zv);
|
||||
zend_hash_destroy(*(HashTable**)data);
|
||||
free(*(HashTable**)data);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue