1964975 - added fix for uninit jump into the leaks patch
Resolves: rhbz#1964975
This commit is contained in:
parent
4dd87a0377
commit
5bfa211ccb
@ -33,5 +33,21 @@ index bd41e6f8e..4b6a24bd3 100644
|
|||||||
memcpy(http->_fields, myhttp._fields, sizeof(http->_fields));
|
memcpy(http->_fields, myhttp._fields, sizeof(http->_fields));
|
||||||
memcpy(http->fields, myhttp.fields, sizeof(http->fields));
|
memcpy(http->fields, myhttp.fields, sizeof(http->fields));
|
||||||
|
|
||||||
--
|
diff --git a/cups/ppd.c b/cups/ppd.c
|
||||||
2.31.1
|
index 525df3592..54368ac4c 100644
|
||||||
|
--- a/cups/ppd.c
|
||||||
|
+++ b/cups/ppd.c
|
||||||
|
@@ -3430,12 +3430,12 @@ ppd_update_filters(ppd_file_t *ppd, /* I - PPD file */
|
||||||
|
srctype[256],
|
||||||
|
dstsuper[16], /* Destination MIME media type */
|
||||||
|
dsttype[256],
|
||||||
|
- program[1024], /* Command to run */
|
||||||
|
*ptr, /* Pointer into command to run */
|
||||||
|
buffer[1024], /* Re-written cupsFilter value */
|
||||||
|
**filter; /* Current filter */
|
||||||
|
int cost; /* Cost of filter */
|
||||||
|
|
||||||
|
+ char program[1024] = { 0 }; /* Command to run */
|
||||||
|
|
||||||
|
DEBUG_printf(("4ppd_update_filters(ppd=%p, cg=%p)", ppd, pg));
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ Summary: CUPS printing system
|
|||||||
Name: cups
|
Name: cups
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 2.3.3%{OP_VER}
|
Version: 2.3.3%{OP_VER}
|
||||||
Release: 12%{?dist}
|
Release: 13%{?dist}
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
Url: http://www.cups.org/
|
Url: http://www.cups.org/
|
||||||
# Apple stopped uploading the new versions into github, use OpenPrinting fork
|
# Apple stopped uploading the new versions into github, use OpenPrinting fork
|
||||||
@ -749,6 +749,9 @@ rm -f %{cups_serverbin}/backend/smb
|
|||||||
%{_mandir}/man7/ippeveps.7.gz
|
%{_mandir}/man7/ippeveps.7.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 24 2022 Richard Lescak <rlescak@redhat.com> - 1:2.3.3op2-13
|
||||||
|
- 1964975 - added fix for uninit jump into the leaks patch
|
||||||
|
|
||||||
* Wed Jan 12 2022 Richard Lescak <rlescak@redhat.com> - 1:2.3.3op2-12
|
* Wed Jan 12 2022 Richard Lescak <rlescak@redhat.com> - 1:2.3.3op2-12
|
||||||
- 1964975 - memory leaks in http_tls_upgrade() and _cupsEncodeOption()
|
- 1964975 - memory leaks in http_tls_upgrade() and _cupsEncodeOption()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user