diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2020-12-27 11:14:02 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2020-12-27 11:15:37 +0000 |
commit | 1bdc89618fa13cd5d301d6374962cd4444a1fb5f (patch) | |
tree | 27580a40be58b3c53b88fb26aec23c4f210d911b /community/graphicsmagick/CVE-2020-12672.patch | |
parent | 3cff4a66e672e14c8cc4969f7d202032a253cb84 (diff) | |
download | aports-1bdc89618fa13cd5d301d6374962cd4444a1fb5f.tar.gz aports-1bdc89618fa13cd5d301d6374962cd4444a1fb5f.tar.bz2 aports-1bdc89618fa13cd5d301d6374962cd4444a1fb5f.tar.xz |
community/graphicsmagick: upgrade to 1.3.36
Diffstat (limited to 'community/graphicsmagick/CVE-2020-12672.patch')
-rw-r--r-- | community/graphicsmagick/CVE-2020-12672.patch | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/community/graphicsmagick/CVE-2020-12672.patch b/community/graphicsmagick/CVE-2020-12672.patch deleted file mode 100644 index 9e29052caf..0000000000 --- a/community/graphicsmagick/CVE-2020-12672.patch +++ /dev/null @@ -1,49 +0,0 @@ -diff -r 4917a4242fc0 -r 50395430a371 coders/png.c ---- a/coders/png.c Fri May 01 13:49:13 2020 -0500 -+++ b/coders/png.c Sat May 30 10:18:16 2020 -0500 -@@ -5689,7 +5691,28 @@ - - if (logging) - (void) LogMagickEvent(CoderEvent,GetMagickModule(), -- " Processing MNG MAGN chunk"); -+ " Processing MNG MAGN chunk: MB=%u, ML=%u," -+ " MR=%u, MT=%u, MX=%u, MY=%u," -+ " X_method=%u, Y_method=%u", -+ mng_info->magn_mb,mng_info->magn_ml, -+ mng_info->magn_mr,mng_info->magn_mt, -+ mng_info->magn_mx,mng_info->magn_my, -+ mng_info->magn_methx, -+ mng_info->magn_methy); -+ -+ /* -+ If the image width is 1, then X magnification is done -+ by simple pixel replication. -+ */ -+ if (image->columns == 1) -+ mng_info->magn_methx = 1; -+ -+ /* -+ If the image height is 1, then Y magnification is done -+ by simple pixel replication. -+ */ -+ if (image->rows == 1) -+ mng_info->magn_methy = 1; - - if (mng_info->magn_methx == 1) - { -@@ -5734,12 +5757,10 @@ - Image - *large_image; - -- int -- yy; -- - long - m, -- y; -+ y, -+ yy; - - register long - x; - |