bjori           Wed Oct 25 12:32:11 2006 UTC

  Modified files:              
    /php-src/ext/zip    php_zip.c 
  Log:
  Missing RETURN_TRUE inside the PHP_ZIP_SET_FILE_COMMENT macro
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/zip/php_zip.c?r1=1.19&r2=1.20&diff_format=u
Index: php-src/ext/zip/php_zip.c
diff -u php-src/ext/zip/php_zip.c:1.19 php-src/ext/zip/php_zip.c:1.20
--- php-src/ext/zip/php_zip.c:1.19      Wed Oct 25 12:31:12 2006
+++ php-src/ext/zip/php_zip.c   Wed Oct 25 12:32:10 2006
@@ -16,7 +16,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $Id: php_zip.c,v 1.19 2006/10/25 12:31:12 bjori Exp $ */
+/* $Id: php_zip.c,v 1.20 2006/10/25 12:32:10 bjori Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -65,7 +65,8 @@
                } \
        } else if (zip_set_file_comment(intern, index, comment, comment_len) < 
0) { \
                RETURN_FALSE; \
-       }
+       } \
+       RETURN_TRUE;
 
 /* }}} */
 
@@ -1936,7 +1937,7 @@
        php_info_print_table_start();
 
        php_info_print_table_row(2, "Zip", "enabled");
-       php_info_print_table_row(2, "Extension Version","$Id: php_zip.c,v 1.19 
2006/10/25 12:31:12 bjori Exp $");
+       php_info_print_table_row(2, "Extension Version","$Id: php_zip.c,v 1.20 
2006/10/25 12:32:10 bjori Exp $");
        php_info_print_table_row(2, "Zip version", "2.0.0");
        php_info_print_table_row(2, "Libzip version", "0.7.1");
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to