- Resolves: #678603
zlib from minizip allowed NULL pointer parameter of function unzGetCurrentFileInfo
This commit is contained in:
parent
fb48bbb856
commit
957d1732f6
12
minizip-null.patch
Normal file
12
minizip-null.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -up zlib-1.2.5/contrib/minizip/unzip.c.pom zlib-1.2.5/contrib/minizip/unzip.c
|
||||||
|
--- zlib-1.2.5/contrib/minizip/unzip.c.pom 2010-02-15 12:59:40.000000000 +0100
|
||||||
|
+++ zlib-1.2.5/contrib/minizip/unzip.c 2011-04-06 12:06:04.000000000 +0200
|
||||||
|
@@ -1145,7 +1145,7 @@ extern int ZEXPORT unzGetCurrentFileInfo
|
||||||
|
szFileName,fileNameBufferSize,
|
||||||
|
extraField,extraFieldBufferSize,
|
||||||
|
szComment,commentBufferSize);
|
||||||
|
- if (err==UNZ_OK)
|
||||||
|
+ if (pfile_info && err==UNZ_OK)
|
||||||
|
{
|
||||||
|
pfile_info->version = file_info64.version;
|
||||||
|
pfile_info->version_needed = file_info64.version_needed;
|
@ -1,12 +1,13 @@
|
|||||||
Summary: The zlib compression and decompression library
|
Summary: The zlib compression and decompression library
|
||||||
Name: zlib
|
Name: zlib
|
||||||
Version: 1.2.5
|
Version: 1.2.5
|
||||||
Release: 3%{?dist}
|
Release: 4%{?dist}
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
Source: http://www.zlib.net/zlib-%{version}.tar.bz2
|
Source: http://www.zlib.net/zlib-%{version}.tar.bz2
|
||||||
Patch3: zlib-1.2.4-autotools.patch
|
Patch3: zlib-1.2.4-autotools.patch
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=591317
|
# https://bugzilla.redhat.com/show_bug.cgi?id=591317
|
||||||
Patch4: zlib-1.2.5-gentoo.patch
|
Patch4: zlib-1.2.5-gentoo.patch
|
||||||
|
Patch5: minizip-null.patch
|
||||||
URL: http://www.gzip.org/zlib/
|
URL: http://www.gzip.org/zlib/
|
||||||
# /contrib/dotzlib/ have Boost license
|
# /contrib/dotzlib/ have Boost license
|
||||||
License: zlib and Boost
|
License: zlib and Boost
|
||||||
@ -60,6 +61,7 @@ developing applications which use minizip.
|
|||||||
%setup -q
|
%setup -q
|
||||||
%patch3 -p1 -b .atools
|
%patch3 -p1 -b .atools
|
||||||
%patch4 -p1 -b .g
|
%patch4 -p1 -b .g
|
||||||
|
%patch5 -p1 -b .null
|
||||||
# patch cannot create an empty dir
|
# patch cannot create an empty dir
|
||||||
mkdir contrib/minizip/m4
|
mkdir contrib/minizip/m4
|
||||||
cp minigzip.c contrib/minizip
|
cp minigzip.c contrib/minizip
|
||||||
@ -139,6 +141,10 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
%{_libdir}/pkgconfig/minizip.pc
|
%{_libdir}/pkgconfig/minizip.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Apr 6 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 1.2.5-4
|
||||||
|
- Resolves: #678603
|
||||||
|
zlib from minizip allowed NULL pointer parameter of function unzGetCurrentFileInfo
|
||||||
|
|
||||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-3
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-3
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user