From c77f783777e0169b2a4b7b9439cad76b372290a3 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Fri, 21 Aug 2015 22:26:26 +0200 Subject: Fix #70322: ZipArchive::close() doesn't indicate errors If an archive can't be written, ZipArchive::close() nonetheless returns TRUE. We fix the return value to properly return success, and additionally raise a warning on failure. --- ext/zip/php_zip.c | 10 ++++++++-- ext/zip/tests/bug70322.phpt | 29 +++++++++++++++++++++++++++++ ext/zip/tests/oo_delete.phpt | 3 ++- 3 files changed, 39 insertions(+), 3 deletions(-) create mode 100644 ext/zip/tests/bug70322.phpt (limited to 'ext') diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index d4f77eb4ed..0355db48e5 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -1616,6 +1616,7 @@ static ZIPARCHIVE_METHOD(close) struct zip *intern; zval *this = getThis(); ze_zip_object *ze_obj; + int err; if (!this) { RETURN_FALSE; @@ -1625,7 +1626,8 @@ static ZIPARCHIVE_METHOD(close) ze_obj = (ze_zip_object*) zend_object_store_get_object(this TSRMLS_CC); - if (zip_close(intern)) { + if (err = zip_close(intern)) { + php_error_docref(NULL TSRMLS_CC, E_WARNING, zip_strerror(intern)); zip_discard(intern); } @@ -1634,7 +1636,11 @@ static ZIPARCHIVE_METHOD(close) ze_obj->filename_len = 0; ze_obj->za = NULL; - RETURN_TRUE; + if (!err) { + RETURN_TRUE; + } else { + RETURN_FALSE; + } } /* }}} */ diff --git a/ext/zip/tests/bug70322.phpt b/ext/zip/tests/bug70322.phpt new file mode 100644 index 0000000000..a9b4915914 --- /dev/null +++ b/ext/zip/tests/bug70322.phpt @@ -0,0 +1,29 @@ +--TEST-- +Bug #70322 (ZipArchive::close() doesn't indicate errors) +--DESCRIPTION-- +We want to test whether ZipArchive::close() returns FALSE and raises a warning +on failure, so we force the failure by adding a file to the archive, which we +delete before closing. +--SKIPIF-- + +--FILE-- +open($zipfile, ZipArchive::CREATE); +$zip->addFile($textfile); +unlink($textfile); +var_dump($zip->close()); +?> +--CLEAN-- + +--EXPECTF-- +Warning: ZipArchive::close(): Read error: No such file or directory in %s%ebug70322.php on line %d +bool(false) diff --git a/ext/zip/tests/oo_delete.phpt b/ext/zip/tests/oo_delete.phpt index 9eac821734..69c6151d5c 100644 --- a/ext/zip/tests/oo_delete.phpt +++ b/ext/zip/tests/oo_delete.phpt @@ -63,7 +63,8 @@ $sb = $zip->statIndex(1); var_dump($sb); $sb = $zip->statIndex(2); var_dump($sb); -$zip->close(); +// suppress irrelevant error message: +@$zip->close(); unset($zip); if (file_exists($file)) { -- cgit v1.2.1