Fixed incompatible pointer type

This commit is contained in:
Xinchen Hui 2014-08-28 11:34:00 +08:00
parent 6954bd4ff6
commit 007406c775

View File

@ -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;