diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2016-05-04 12:46:01 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2016-05-04 13:22:52 -0400 |
commit | d663e5e6001fa3d23bb80848cd46560c92ea92c8 (patch) | |
tree | c1e2eabe63ceebdacbb6fb37b5b53a777af32bb3 /gnu/packages/patches | |
parent | 11057c4b58d766f358bc439690b9765bee735772 (diff) | |
download | guix-d663e5e6001fa3d23bb80848cd46560c92ea92c8.tar guix-d663e5e6001fa3d23bb80848cd46560c92ea92c8.tar.gz |
gnu: imagemagick: Update to 6.9.3-10.
Fixes CVE-2016–3714.
* gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.3-10.
[source]: Remove patch.
* gnu/packages/patches/imagemagick-test-segv.patch: Delete.
* gnu/local.mk (dist_patch_DATA): Remove patch file from distribution.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/imagemagick-test-segv.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/gnu/packages/patches/imagemagick-test-segv.patch b/gnu/packages/patches/imagemagick-test-segv.patch deleted file mode 100644 index 6626e54828..0000000000 --- a/gnu/packages/patches/imagemagick-test-segv.patch +++ /dev/null @@ -1,20 +0,0 @@ -This patch works around a segmentation fault in 'Magick++/tests/color' when -running 'Magick++/tests/tests.tap'. Here we get an exception early on, which -is supposedly harmless: - - Caught exception: color: UnableToOpenConfigureFile `colors.xml' @ warning/configure.c/GetConfigureOptions/706 - -However, when the stack unwinders run, 'UnregisterDOTImage' gets called even -though 'RegisterDOTImage' hadn't been called yet; thus, 'graphic_context' in -coders/dot.c is NULL, leading to the segfault. - ---- ImageMagick-6.9.2-1/coders/dot.c 2015-09-16 17:32:42.900323334 +0200 -+++ ImageMagick-6.9.2-1/coders/dot.c 2015-09-16 17:32:48.312367636 +0200 -@@ -240,6 +240,7 @@ ModuleExport void UnregisterDOTImage(voi - (void) UnregisterMagickInfo("GV"); - (void) UnregisterMagickInfo("DOT"); - #if defined(MAGICKCORE_GVC_DELEGATE) -+ if (graphic_context != NULL) - gvFreeContext(graphic_context); - #endif - } |