From a8d0c64662c355c15ee3293ea4709e30793af4f3 Mon Sep 17 00:00:00 2001 From: Greg Beaver Date: Sat, 23 Feb 2008 21:33:46 +0000 Subject: [PATCH] fix faulty & in check for creation of phar manifest --- ext/phar/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/phar/util.c b/ext/phar/util.c index 83ba4f5723..92227ffe79 100644 --- a/ext/phar/util.c +++ b/ext/phar/util.c @@ -782,7 +782,7 @@ phar_entry_info *phar_get_entry_info_dir(phar_archive_data *phar, char *path, in return NULL; } - if (!&phar->manifest.arBuckets) { + if (!phar->manifest.arBuckets) { return NULL; } if (is_dir) { -- 2.50.1