From: Xinchen Hui Date: Thu, 28 Aug 2014 03:34:00 +0000 (+0800) Subject: Fixed incompatible pointer type X-Git-Tag: PRE_PHP7_REMOVALS~243 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=007406c775b527a334a0964a624810afeb599ed5;p=php Fixed incompatible pointer type --- diff --git a/ext/phar/phar_object.c b/ext/phar/phar_object.c index 0ce1c3f569..ec4c288368 100755 --- a/ext/phar/phar_object.c +++ b/ext/phar/phar_object.c @@ -3420,7 +3420,7 @@ PHP_METHOD(Phar, copy) } } - if (phar_path_check(&newfile, &newfile_len, &pcr_error) > pcr_is_ok) { + if (phar_path_check(&newfile, (int *) &newfile_len, &pcr_error) > pcr_is_ok) { zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0 TSRMLS_CC, "file \"%s\" contains invalid characters %s, cannot be copied from \"%s\" in phar %s", newfile, pcr_error, oldfile, phar_obj->archive->fname); RETURN_FALSE;