Make sure nptfront is explicitly > 0, so we don't alloc a poly for negative number points at all

This commit is contained in:
Monster Iestyn 2018-12-14 18:01:18 +00:00
parent 4089b6b8e9
commit 02fc845a72

View file

@ -387,7 +387,7 @@ static void SplitPoly (fdivline_t *bsp, //splitting parametric line
*backpoly = HWR_AllocPoly(2 + nptback); *backpoly = HWR_AllocPoly(2 + nptback);
else else
*backpoly = NULL; *backpoly = NULL;
if (nptfront) if (nptfront > 0)
*frontpoly = HWR_AllocPoly(2 + nptfront); *frontpoly = HWR_AllocPoly(2 + nptfront);
else else
*frontpoly = NULL; *frontpoly = NULL;