From 8eae39e98ff72c561d78c40362c6a6d39e77ac3b Mon Sep 17 00:00:00 2001 From: Terseus Date: Fri, 4 Apr 2014 19:20:29 +0200 Subject: [PATCH] Oops, added missing ';' Now writing in the wall "don't push before compile" 100 times. --- libImaging/Draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libImaging/Draw.c b/libImaging/Draw.c index ad8d589af..2f53fde79 100644 --- a/libImaging/Draw.c +++ b/libImaging/Draw.c @@ -459,7 +459,7 @@ polygon_generic(Imaging im, int n, Edge *e, int ink, int eofill, /* Process the edge table with a scan line searching for intersections */ float* xx = malloc(sizeof(float) * edge_count * 2); if (!xx) { - free(edge_table) + free(edge_table); return -1; } for (; ymin <= ymax; ymin++) {