? gmon.out Index: php_zip.c =================================================================== RCS file: /repository/pecl/zip/php_zip.c,v retrieving revision 1.78 diff -u -p -d -r1.78 php_zip.c --- php_zip.c 24 Sep 2006 22:34:38 -0000 1.78 +++ php_zip.c 3 Oct 2006 17:28:18 -0000 @@ -759,7 +759,7 @@ PHP_FUNCTION(zip_entry_read) char *buffer; int n = 0; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|ll", &zip_entry, &len) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l", &zip_entry, &len) == FAILURE) { return; } @@ -1344,8 +1344,8 @@ ZIPARCHIVE_METHOD(getCommentName) { struct zip *intern; zval *this = getThis(); - long name_len = 0, flags = 0; - int comment_len; + int name_len = 0, comment_len; + long flags = 0; const char * comment; char *name; struct zip_stat sb; @@ -1434,8 +1434,8 @@ ZIPARCHIVE_METHOD(deleteName) { struct zip *intern; zval *this = getThis(); - long name_len = 0; - char *name; + int name_len = 0; + char *name; struct zip_stat sb; if (!this) {