diff options
Diffstat (limited to 'media-gfx/autotrace/files/autotrace-0.31.1-CVE-2016-7392.patch')
-rw-r--r-- | media-gfx/autotrace/files/autotrace-0.31.1-CVE-2016-7392.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/media-gfx/autotrace/files/autotrace-0.31.1-CVE-2016-7392.patch b/media-gfx/autotrace/files/autotrace-0.31.1-CVE-2016-7392.patch deleted file mode 100644 index e3bb0303cb8f..000000000000 --- a/media-gfx/autotrace/files/autotrace-0.31.1-CVE-2016-7392.patch +++ /dev/null @@ -1,15 +0,0 @@ -Patch from debian to fix CVE-2016-7392 -https://blogs.gentoo.org/ago/2016/09/10/autotrace-heap-based-buffer-overflow-in-pstoedit_suffix_table_init-output-pstoedit-c/ - ---- a/output-pstoedit.c -+++ b/output-pstoedit.c -@@ -84,7 +84,7 @@ - dd_tmp = dd_start; - while (dd_tmp->symbolicname) - dd_tmp++; -- XMALLOC(pstoedit_suffix_table, sizeof(char *) * 2 * (dd_tmp - dd_start) + 1); -+ XMALLOC(pstoedit_suffix_table, sizeof(char *) * (2 * (dd_tmp - dd_start) + 1)); - - #if defined (OUTPUT_PSTOEDIT_DEBUG) && defined(__GNUC__) - fprintf(stderr, "OUTPUT PSTOEDIT BACKEND DEBUG(%s)\n", __FUNCTION__); - |