From f5f54be5c160c4179a416a3cd72aff88976e6930 Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Wed, 25 Oct 2006 12:32:10 +0000 Subject: [PATCH] Missing RETURN_TRUE inside the PHP_ZIP_SET_FILE_COMMENT macro --- ext/zip/php_zip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index a6b47c3dad..e89c31bd45 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -65,7 +65,8 @@ static int le_zip_entry; } \ } else if (zip_set_file_comment(intern, index, comment, comment_len) < 0) { \ RETURN_FALSE; \ - } + } \ + RETURN_TRUE; /* }}} */ -- 2.40.0