From: Remi Collet Date: Thu, 19 Dec 2013 09:53:38 +0000 (+0100) Subject: Fixed Bug #66321 (ZipArchive::open() ze_obj->filename_len not real) X-Git-Tag: php-5.5.8RC1~15^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20eb8e4d11d46c399f2920af0a552007d8d5d608;p=php Fixed Bug #66321 (ZipArchive::open() ze_obj->filename_len not real) --- diff --git a/NEWS b/NEWS index d3bd822885..6dea019bc3 100644 --- a/NEWS +++ b/NEWS @@ -31,6 +31,9 @@ PHP NEWS . Fixed bug #49634 (Segfault throwing an exception in a XSL registered function). (Mike) +- ZIP: + . Fixed Bug #66321 (ZipArchive::open() ze_obj->filename_len not real). (Remi) + 12 Dec 2013, PHP 5.4.23 - Core: diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index 1f435bbb00..31c66a56d4 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -1537,7 +1537,7 @@ static ZIPARCHIVE_METHOD(open) RETURN_LONG((long)err); } ze_obj->filename = estrdup(resolved_path); - ze_obj->filename_len = filename_len; + ze_obj->filename_len = strlen(resolved_path); ze_obj->za = intern; RETURN_TRUE; }