mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
11947a55c8
The added patches (sourced from Debian) fixes the following security issues: - CVE-2006-3376 - CVE-2009-1364 - CVE-2015-0848 - CVE-2015-4588 - CVE-2015-4695 - CVE-2015-4696
12 lines
339 B
Diff
12 lines
339 B
Diff
--- libwmf-0.2.8.4.orig/src/extra/gd/gd_clip.c
|
|
+++ libwmf-0.2.8.4/src/extra/gd/gd_clip.c
|
|
@@ -70,6 +70,7 @@
|
|
{ more = gdRealloc (im->clip->list,(im->clip->max + 8) * sizeof (gdClipRectangle));
|
|
if (more == 0) return;
|
|
im->clip->max += 8;
|
|
+ im->clip->list = more;
|
|
}
|
|
im->clip->list[im->clip->count] = (*rect);
|
|
im->clip->count++;
|
|
|