- fix bzip2recover patch
This commit is contained in:
parent
3a6cb19d96
commit
b16bcea0a6
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
- strcpy ( progName, argv[0] );
|
- strcpy ( progName, argv[0] );
|
||||||
+ strncpy ( progName, argv[0], BZ_MAX_FILENAME-1);
|
+ strncpy ( progName, argv[0], BZ_MAX_FILENAME-1);
|
||||||
+ progName[BZ_MAX_FILENAME-1]="\0";
|
+ progName[BZ_MAX_FILENAME-1]='\0';
|
||||||
inFileName[0] = outFileName[0] = 0;
|
inFileName[0] = outFileName[0] = 0;
|
||||||
|
|
||||||
fprintf ( stderr,
|
fprintf ( stderr,
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Summary: A file compression utility
|
Summary: A file compression utility
|
||||||
Name: bzip2
|
Name: bzip2
|
||||||
Version: 1.0.4
|
Version: 1.0.4
|
||||||
Release: 3%{?dist}
|
Release: 4%{?dist}
|
||||||
License: BSD
|
License: BSD
|
||||||
Group: Applications/File
|
Group: Applications/File
|
||||||
URL: http://sources.redhat.com/bzip2/
|
URL: http://sources.redhat.com/bzip2/
|
||||||
@ -105,6 +105,9 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
%{_libdir}/*so
|
%{_libdir}/*so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Feb 6 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-4
|
||||||
|
- fix bzip2recover patch
|
||||||
|
|
||||||
* Mon Feb 5 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-3
|
* Mon Feb 5 2007 Ivana Varekova <varekova@redhat.com> 1.0.4-3
|
||||||
- Resolves: 226979
|
- Resolves: 226979
|
||||||
Buffer overflow in bzip2's bzip2recover
|
Buffer overflow in bzip2's bzip2recover
|
||||||
|
Loading…
Reference in New Issue
Block a user