mirror of
https://github.com/php/php-src.git
synced 2024-12-13 03:44:17 +08:00
25 lines
500 B
PHP
25 lines
500 B
PHP
--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==
|