summaryrefslogtreecommitdiff
path: root/user/libgd/CVE-2019-6977.patch
diff options
context:
space:
mode:
authorMax Rees <maxcrees@me.com>2020-03-29 03:26:16 -0500
committerMax Rees <maxcrees@me.com>2020-04-05 12:22:26 +0000
commit7f8d4d642ad643f553e0fe74c0d48d59c81d178c (patch)
tree8a9062070516fe4e6b36e700133b50d0788bc531 /user/libgd/CVE-2019-6977.patch
parent6b46644d45aa93ed99163a89a4b401b6b23daa77 (diff)
downloadpackages-7f8d4d642ad643f553e0fe74c0d48d59c81d178c.tar.gz
packages-7f8d4d642ad643f553e0fe74c0d48d59c81d178c.tar.bz2
packages-7f8d4d642ad643f553e0fe74c0d48d59c81d178c.tar.xz
packages-7f8d4d642ad643f553e0fe74c0d48d59c81d178c.zip
user/libgd: [CVE] bump to 2.3.0
Diffstat (limited to 'user/libgd/CVE-2019-6977.patch')
-rw-r--r--user/libgd/CVE-2019-6977.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/user/libgd/CVE-2019-6977.patch b/user/libgd/CVE-2019-6977.patch
deleted file mode 100644
index 4cfb9ab98..000000000
--- a/user/libgd/CVE-2019-6977.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Bug: https://bts.adelielinux.org/show_bug.cgi?id=159
-Backported-From: http://git.php.net/?p=php-src.git;a=commit;h=7a12dad4dd6c370835b13afae214b240082c7538
-Author: A. Wilcox <awilfox@adelielinux.org>
-Bug: https://bugs.php.net/bug.php?id=77270
-Author: Christoph M. Becker <cmbecker69@gmx.de>
-Committer: Stanislav Malyshev <stas@php.net>
-Upstream-Status: unknown
-
---- libgd-2.2.5/src/gd_color_match.c.old 2017-08-30 11:05:54.000000000 +0000
-+++ libgd-2.2.5/src/gd_color_match.c 2019-10-03 16:17:55.842322245 +0000
-@@ -31,8 +31,8 @@
- return -4; /* At least 1 color must be allocated */
- }
-
-- buf = (unsigned long *)gdMalloc(sizeof(unsigned long) * 5 * im2->colorsTotal);
-- memset (buf, 0, sizeof(unsigned long) * 5 * im2->colorsTotal );
-+ buf = (unsigned long *)gdMalloc(sizeof(unsigned long) * 5 * gdMaxColors);
-+ memset( buf, 0, sizeof(unsigned long) * 5 * gdMaxColors );
-
- for (x=0; x < im1->sx; x++) {
- for( y=0; y<im1->sy; y++ ) {