diff options
Diffstat (limited to 'mi/mifpolycon.c')
-rw-r--r-- | mi/mifpolycon.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mi/mifpolycon.c b/mi/mifpolycon.c index 13b5a4872..1be01500a 100644 --- a/mi/mifpolycon.c +++ b/mi/mifpolycon.c @@ -122,9 +122,9 @@ miFillSppPoly( if(!ptsOut || !width || !Marked) { - if (Marked) free(Marked); - if (width) free(width); - if (ptsOut) free(ptsOut); + free(Marked); + free(width); + free(ptsOut); return; } |