From: Marcus Boerger Date: Thu, 27 Mar 2008 12:54:23 +0000 (+0000) Subject: - Ifdef out code that has if(0) and doesn't compile anyway X-Git-Tag: RELEASE_2_0_0b1~544 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b3560f069b481c8f0b269d38e230d8718f56472;p=php - Ifdef out code that has if(0) and doesn't compile anyway --- diff --git a/ext/phar/phar.c b/ext/phar/phar.c index 1d75019b7e..806a6cfc92 100644 --- a/ext/phar/phar.c +++ b/ext/phar/phar.c @@ -2678,6 +2678,7 @@ int phar_zend_open(const char *filename, zend_file_handle *handle TSRMLS_DC) /* } return FAILURE; } +#if HELLY_0 if (0 && zend_hash_num_elements(&(PHAR_GLOBALS->phar_fname_map))) { char *fname = NULL; int fname_len; @@ -2737,6 +2738,7 @@ dopharthing: return FAILURE; } } +#endif skip_phar: return phar_orig_zend_open(filename, handle TSRMLS_CC); }