From 7ed3be8240b4e3f0259be6bba9cd98d59c897eb8 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Wed, 4 Jan 2006 16:18:31 +0000 Subject: [PATCH] - Fix TSRM builds --- ext/phar/phar.c | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.50.1