From: Greg Beaver Date: Sat, 23 Feb 2008 21:33:46 +0000 (+0000) Subject: fix faulty & in check for creation of phar manifest X-Git-Tag: RELEASE_2_0_0a1~358 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8d0c64662c355c15ee3293ea4709e30793af4f3;p=php fix faulty & in check for creation of phar manifest --- 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) {