summaryrefslogtreecommitdiff
path: root/ext/zip
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2006-12-24 01:29:20 +0000
committerHannes Magnusson <bjori@php.net>2006-12-24 01:29:20 +0000
commit6077df1a03a91ce2fe17ff1a7bdeb979a1a5e842 (patch)
treeb416acaab4a07d505696802b1563a2e48bb44b7b /ext/zip
parenteaf3d32157811f6f43da084b55b34f124fc795e1 (diff)
downloadphp-git-6077df1a03a91ce2fe17ff1a7bdeb979a1a5e842.tar.gz
Fix typo
Diffstat (limited to 'ext/zip')
-rw-r--r--ext/zip/php_zip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c
index 28fc27fc03..7da6c8f171 100644
--- a/ext/zip/php_zip.c
+++ b/ext/zip/php_zip.c
@@ -1720,7 +1720,7 @@ static ZIPARCHIVE_METHOD(extractTo)
break;
case IS_STRING:
file = Z_STRVAL_PP(zval_file);
- if (!php_zip_extract_file(intern, pathto, file, Z_STRLEN_P(zval_files) TSRMLS_CC)) {
+ if (!php_zip_extract_file(intern, pathto, file, Z_STRLEN_PP(zval_file) TSRMLS_CC)) {
RETURN_FALSE;
}
break;