summaryrefslogtreecommitdiff
path: root/graphics/GraphicsMagick13/files/patch-utility
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2005-10-16 07:41:55 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2005-10-16 07:41:55 +0000
commit40a3261d1a6e2617f6afde0cd6d762a7e211af7a (patch)
treed70bbf882801af3a4e58dde3ed6a1da1849479d4 /graphics/GraphicsMagick13/files/patch-utility
parentFix the string format vulnerability desribed at (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_6_0_0'.release/6.0.0
Diffstat (limited to 'graphics/GraphicsMagick13/files/patch-utility')
-rw-r--r--graphics/GraphicsMagick13/files/patch-utility21
1 files changed, 0 insertions, 21 deletions
diff --git a/graphics/GraphicsMagick13/files/patch-utility b/graphics/GraphicsMagick13/files/patch-utility
deleted file mode 100644
index 6dd5fb61c3d3..000000000000
--- a/graphics/GraphicsMagick13/files/patch-utility
+++ /dev/null
@@ -1,21 +0,0 @@
---- magick/utility.c Sat Apr 2 17:35:06 2005
-+++ magick/utility.c Sun Jul 24 18:22:40 2005
-@@ -47,4 +47,8 @@
- #include "magick/utility.h"
-
-+#if defined(POSIX)
-+# include <sys/types.h>
-+# include <sys/wait.h>
-+#endif
-
- /*
-@@ -3874,4 +3878,9 @@
- #if defined(POSIX)
- status=system(command);
-+ if (status == -1)
-+ perror(command);
-+ else if (WIFSIGNALED(status)) {
-+ fprintf(stderr, "Command ``\n%s\n'' terminated due to signal %d\n", command, WTERMSIG(status));
-+ }
- #elif defined(vms)
- status=!system(command);