From: Hannes Magnusson Date: Wed, 25 Oct 2006 12:32:10 +0000 (+0000) Subject: Missing RETURN_TRUE inside the PHP_ZIP_SET_FILE_COMMENT macro X-Git-Tag: RELEASE_1_0_0RC1~1210 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5f54be5c160c4179a416a3cd72aff88976e6930;p=php Missing RETURN_TRUE inside the PHP_ZIP_SET_FILE_COMMENT macro --- 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; /* }}} */