From: Antony Dovgal Date: Mon, 25 Sep 2006 08:44:58 +0000 (+0000) Subject: add test X-Git-Tag: RELEASE_1_0_0RC1~1552 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0fcfad3e5d3d3c4257e5196b6ec3a0029bd27535;p=php add test --- diff --git a/ext/zip/tests/bug38944.phpt b/ext/zip/tests/bug38944.phpt new file mode 100644 index 0000000000..ee12fad2b3 --- /dev/null +++ b/ext/zip/tests/bug38944.phpt @@ -0,0 +1,40 @@ +--TEST-- +Bug #38944 (newly created ZipArchive segfaults when accessing comment property) +--SKIPIF-- + +--FILE-- +open($arc_name, ZIPARCHIVE::CREATE);; + +var_dump($foo->status); +var_dump($foo->statusSys); +var_dump($foo->numFiles); +var_dump($foo->filename); +var_dump($foo->comment); + +var_dump($foo); + +echo "Done\n"; +?> +--EXPECTF-- +int(0) +int(0) +int(0) +string(0) "" +string(0) "" +object(ZipArchive)#%d (5) { + ["status"]=> + int(0) + ["statusSys"]=> + int(0) + ["numFiles"]=> + int(0) + ["filename"]=> + string(0) "" + ["comment"]=> + string(0) "" +} +Done