summaryrefslogtreecommitdiff
path: root/ext/zip
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-09-25 08:45:08 +0000
committerAntony Dovgal <tony2001@php.net>2006-09-25 08:45:08 +0000
commitcd7f3a786dc4b2d372d27a8fbdd437ef3c7fdb10 (patch)
tree1e9860f26a8cf1aeb5964f681b22bd945ba355ee /ext/zip
parentfa6c04c74690f1620dcb0a0d34c0321179ef0bad (diff)
downloadphp-git-cd7f3a786dc4b2d372d27a8fbdd437ef3c7fdb10.tar.gz
add test
Diffstat (limited to 'ext/zip')
-rw-r--r--ext/zip/tests/bug38944.phpt40
1 files changed, 40 insertions, 0 deletions
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--
+<?php if (!extension_loaded("zip")) print "skip"; ?>
+--FILE--
+<?php
+
+$arc_name = dirname(__FILE__)."/bug38944.zip";
+$foo = new ZipArchive;
+$foo->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