-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/zip/tests/
File Upload :
Current File : //usr/src/php/ext/zip/tests/bug53885.phpt

--TEST--
Bug #53885 (ZipArchive segfault with FL_UNCHANGED on empty archive)
--SKIPIF--
<?php
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
<?php
$fname = dirname(__FILE__)."/test53885.zip";
if(file_exists($fname)) unlink($fname);
touch($fname);
$nx=new ZipArchive();
$nx->open($fname);
$nx->locateName("a",ZIPARCHIVE::FL_UNCHANGED);
$nx->statName("a",ZIPARCHIVE::FL_UNCHANGED);
?>
==DONE==
--CLEAN--
<?php
$fname = dirname(__FILE__)."/test53885.zip";
unlink($fname);
?>
--EXPECTF--
==DONE==

Copyright © 2017 || Recoded By Mr.Bumblebee