diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2018-05-25 23:29:36 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-05-31 15:04:55 -0700 |
commit | d8220d28e5d53cd896b28d9dea13e2258923f35a (patch) | |
tree | 0ae3d22871d934a49ba1689084ba6fe301ee48e0 /patches/source/cups/cups-1.3.x.CVE-2010-0542.diff | |
parent | 5a12e7c134274dba706667107d10d231517d3e05 (diff) | |
download | current-d8220d28e5d53cd896b28d9dea13e2258923f35a.tar.gz |
Fri May 25 23:29:36 UTC 201813.0
patches/packages/glibc-zoneinfo-2018e-noarch-2_slack13.0.txz: Rebuilt.
Handle removal of US/Pacific-New timezone. If we see that the machine is
using this, it will be automatically switched to US/Pacific.
Diffstat (limited to 'patches/source/cups/cups-1.3.x.CVE-2010-0542.diff')
-rw-r--r-- | patches/source/cups/cups-1.3.x.CVE-2010-0542.diff | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/patches/source/cups/cups-1.3.x.CVE-2010-0542.diff b/patches/source/cups/cups-1.3.x.CVE-2010-0542.diff new file mode 100644 index 00000000..6c234f03 --- /dev/null +++ b/patches/source/cups/cups-1.3.x.CVE-2010-0542.diff @@ -0,0 +1,25 @@ +--- ./filter/texttops.c.orig 2008-10-09 15:12:03.000000000 -0500 ++++ ./filter/texttops.c 2010-11-27 12:42:33.000000000 -0600 +@@ -181,8 +181,20 @@ + exit(1); + } + +- Page = calloc(sizeof(lchar_t *), SizeLines); +- Page[0] = calloc(sizeof(lchar_t), SizeColumns * SizeLines); ++ if ((Page = calloc(sizeof(lchar_t *), SizeLines)) == NULL) ++ { ++ _cupsLangPrintf(stderr, _("ERROR: Unable to print %dx%d text page.\n"), ++ SizeColumns, SizeLines); ++ exit(1); ++ } ++ ++ if ((Page[0] = calloc(sizeof(lchar_t), SizeColumns * SizeLines)) == NULL) ++ { ++ _cupsLangPrintf(stderr, _("ERROR: Unable to print %dx%d text page.\n"), ++ SizeColumns, SizeLines); ++ exit(1); ++ } ++ + for (i = 1; i < SizeLines; i ++) + Page[i] = Page[0] + i * SizeColumns; + |