Search
j0ke.net Open Build Service
>
Projects
>
internetx
:
php5
>
php-5.2.17
> php-5.2.14-CVE-2010-3709.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File php-5.2.14-CVE-2010-3709.patch of Package php-5.2.17 (Revision 19)
Currently displaying revision
19
,
show latest
Index: ext/zip/php_zip.c =================================================================== --- ext/zip/php_zip.c.orig +++ ext/zip/php_zip.c @@ -1829,6 +1829,9 @@ static ZIPARCHIVE_METHOD(getArchiveComme } comment = zip_get_archive_comment(intern, &comment_len, (int)flags); + if(comment==NULL) { + RETURN_FALSE; + } RETURN_STRINGL((char *)comment, (long)comment_len, 1); } /* }}} */