From: Pierre Joye Date: Sun, 13 Aug 2006 23:43:11 +0000 (+0000) Subject: - MFH: locateName should not change the state/error, can be used to test X-Git-Tag: php-5.2.0RC2~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=284ce40c4a50f42b66ac0dff58786b74e76493b7;p=php - MFH: locateName should not change the state/error, can be used to test an entry --- diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index 27f0bb2dd7..0e46345f7a 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -1153,6 +1153,7 @@ ZIPARCHIVE_METHOD(locateName) char *name; int name_len; long flags = 0; + long idx = -1; if (!this) { RETURN_FALSE; @@ -1169,7 +1170,18 @@ ZIPARCHIVE_METHOD(locateName) RETURN_FALSE; } - RETURN_LONG((long)zip_name_locate(intern, (const char *)name, flags)) + idx = (long)zip_name_locate(intern, (const char *)name, flags); + + if (idx<0) { + /* reset the error */ + if (intern->error.str) { + _zip_error_fini(&intern->error); + } + _zip_error_init(&intern->error); + RETURN_FALSE; + } else { + RETURN_LONG(idx); + } } /* }}} */ diff --git a/ext/zip/tests/oo_namelocate.phpt b/ext/zip/tests/oo_namelocate.phpt index ccfa3a9d8d..e7a844817f 100644 --- a/ext/zip/tests/oo_namelocate.phpt +++ b/ext/zip/tests/oo_namelocate.phpt @@ -31,15 +31,16 @@ if (!$zip->open($file)) { exit('failed'); } -echo $zip->locateName('entry1.txt') . "\n"; -echo $zip->locateName('eNtry2.txt') . "\n"; -echo $zip->locateName('eNtry2.txt', ZIPARCHIVE::FL_NOCASE) . "\n"; -echo $zip->locateName('enTRy2d.txt', ZIPARCHIVE::FL_NOCASE|ZIPARCHIVE::FL_NODIR) . "\n"; + +var_dump($zip->locateName('entry1.txt')); +var_dump($zip->locateName('eNtry2.txt')); +var_dump($zip->locateName('eNtry2.txt', ZIPARCHIVE::FL_NOCASE)); +var_dump($zip->locateName('enTRy2d.txt', ZIPARCHIVE::FL_NOCASE|ZIPARCHIVE::FL_NODIR)); $zip->close(); ?> --EXPECTF-- -0 --1 -1 -2 +int(0) +bool(false) +int(1) +int(2)