]> granicus.if.org Git - php/commitdiff
- locateName should not change the state/error, can be used to test
authorPierre Joye <pajoye@php.net>
Sun, 13 Aug 2006 23:39:57 +0000 (23:39 +0000)
committerPierre Joye <pajoye@php.net>
Sun, 13 Aug 2006 23:39:57 +0000 (23:39 +0000)
  an entry

ext/zip/php_zip.c
ext/zip/tests/oo_namelocate.phpt

index f4a72c2e57b4acf516d88e50b8ee3843af19ab01..6b18bc9e0740a62e626469a942b90e000fb9a428 100644 (file)
@@ -1126,6 +1126,7 @@ ZIPARCHIVE_METHOD(locateName)
        char *name;
        int name_len;
        long flags = 0;
+       long idx = -1;
 
        if (!this) {
                RETURN_FALSE;
@@ -1142,7 +1143,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);
+       }
 }
 /* }}} */
 
index ccfa3a9d8dcdfb8d85608f04f6389c7013adeb5b..3010037e71af382d2fb84215d8a07b3b8aeeb821 100644 (file)
@@ -31,15 +31,15 @@ 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)