From 041302a8f7c6162116bf30019c5eeeb9dafd26b2 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sun, 14 Sep 2014 11:36:11 +0200 Subject: [PATCH] reduce struct size by 8 byte on 64 bit --- ext/phar/phar_object.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/phar/phar_object.c b/ext/phar/phar_object.c index ed3e60a0ea..c9f31d00f8 100755 --- a/ext/phar/phar_object.c +++ b/ext/phar/phar_object.c @@ -1382,10 +1382,10 @@ struct _phar_t { phar_archive_object *p; zend_class_entry *c; char *b; - uint l; zval *ret; - int count; php_stream *fp; + uint l; + int count; }; static int phar_build(zend_object_iterator *iter, void *puser TSRMLS_DC) /* {{{ */ -- 2.40.0