From 56d5c87b596bfe792f79b2e41fde83b769f6406d Mon Sep 17 00:00:00 2001 From: Mikko Mononen Date: Wed, 23 May 2018 11:11:17 +0300 Subject: [PATCH] Fix for #30 Initialize processCDT in tessNewTess() --- Source/tess.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/tess.c b/Source/tess.c index a2f5e14..5f47f8d 100755 --- a/Source/tess.c +++ b/Source/tess.c @@ -632,6 +632,7 @@ TESStesselator* tessNewTess( TESSalloc* alloc ) tess->reverseContours = 0; tess->windingRule = TESS_WINDING_ODD; + tess->processCDT = 0; if (tess->alloc.regionBucketSize < 16) tess->alloc.regionBucketSize = 16;