1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.3'

* PHP-8.3:
  Set SG(rfc1867_uploaded_files) to null after destroy
This commit is contained in:
Ilija Tovilo
2024-06-10 23:03:49 +02:00

View File

@@ -175,6 +175,7 @@ PHPAPI void destroy_uploaded_files_hash(void) /* {{{ */
} ZEND_HASH_FOREACH_END();
zend_hash_destroy(SG(rfc1867_uploaded_files));
FREE_HASHTABLE(SG(rfc1867_uploaded_files));
SG(rfc1867_uploaded_files) = NULL;
}
/* }}} */