php-src/ext/zip/tests/bug76524.phpt
2020-02-03 22:52:20 +01:00

25 lines
593 B
PHP

--TEST--
ZipArchive Bug #76524 (memory leak with ZipArchive::OVERWRITE flag and empty archive)
--SKIPIF--
<?php
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
<?php
$i = 0;
do {
$filename = __DIR__ . "/nonexistent" . ($i++) . ".zip";
} while (file_exists($filename));
$zip = new ZipArchive();
$zip->open($filename, ZipArchive::CREATE | ZipArchive::OVERWRITE);
echo 'ok';
/* Zip-related error messages depend on platform and libzip version,
so the regex is used to check that Zend MM does NOT show warnings
about leaks: */
?>
--EXPECTREGEX--
ok((?!memory leaks detected).)*