diff options
| author | Marcus Boerger <helly@php.net> | 2006-01-04 16:18:31 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2006-01-04 16:18:31 +0000 |
| commit | 7ed3be8240b4e3f0259be6bba9cd98d59c897eb8 (patch) | |
| tree | f266440dbc32195197c02258ff0e7da45e417e03 | |
| parent | 81d9c330f74e5c1c187b792780b071558ffde513 (diff) | |
| download | php-git-7ed3be8240b4e3f0259be6bba9cd98d59c897eb8.tar.gz | |
- Fix TSRM builds
| -rw-r--r-- | ext/phar/phar.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/phar/phar.c b/ext/phar/phar.c index 87cf5489b1..e62e8ae818 100644 --- a/ext/phar/phar.c +++ b/ext/phar/phar.c @@ -102,6 +102,8 @@ static zend_class_entry *php_archive_entry_ptr; static void destroy_phar_data(void *pDest) /* {{{ */ { + TSRMLS_FETCH(); + phar_file_data *data = (phar_file_data *) pDest; efree(data->alias); zend_hash_destroy(data->manifest); |
