84eede9775
PR: 134246 Submitted by: Eygene Ryabinkin <rea-fbsd@codelabs.ru> Security: http://www.vuxml.org/freebsd/6a245f31-4254-11de-b67a-0030843d3802.html http://www.vuxml.org/freebsd/48aab1d0-4252-11de-b67a-0030843d3802.html
11 lines
303 B
Plaintext
11 lines
303 B
Plaintext
--- src/extra/gd/gd_clip.c
|
|
+++ 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++;
|