mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.5'
* PHP-8.5: phar: Fix more alias memory leaks
This commit is contained in:
@@ -346,6 +346,7 @@ foundit:
|
||||
entry.fp_type = PHAR_FP;
|
||||
entry.is_persistent = mydata->is_persistent;
|
||||
#define PHAR_ZIP_FAIL(errmsg) \
|
||||
efree(actual_alias); \
|
||||
zend_hash_destroy(&mydata->manifest); \
|
||||
HT_INVALIDATE(&mydata->manifest); \
|
||||
zend_hash_destroy(&mydata->mounted_dirs); \
|
||||
@@ -645,7 +646,6 @@ foundit:
|
||||
}
|
||||
|
||||
if (!entry.uncompressed_filesize) {
|
||||
efree(actual_alias);
|
||||
php_stream_filter_remove(filter, 1);
|
||||
zend_string_release_ex(entry.filename, entry.is_persistent);
|
||||
PHAR_ZIP_FAIL("unable to read in alias, truncated");
|
||||
@@ -679,7 +679,6 @@ foundit:
|
||||
}
|
||||
|
||||
if (!entry.uncompressed_filesize) {
|
||||
efree(actual_alias);
|
||||
php_stream_filter_remove(filter, 1);
|
||||
zend_string_release_ex(entry.filename, entry.is_persistent);
|
||||
PHAR_ZIP_FAIL("unable to read in alias, truncated");
|
||||
@@ -703,7 +702,6 @@ foundit:
|
||||
}
|
||||
|
||||
if (!entry.uncompressed_filesize) {
|
||||
efree(actual_alias);
|
||||
zend_string_release_ex(entry.filename, entry.is_persistent);
|
||||
PHAR_ZIP_FAIL("unable to read in alias, truncated");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user