From 5185097075c2618aa2653757140296aa6e47802f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sat, 17 Dec 2022 18:43:10 +0100 Subject: [PATCH] Fix #49: Initialize variable --- gds-utils/gds-parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gds-utils/gds-parser.c b/gds-utils/gds-parser.c index 87ac3c2..b4b063e 100644 --- a/gds-utils/gds-parser.c +++ b/gds-utils/gds-parser.c @@ -364,6 +364,7 @@ static GList *append_cell(GList *curr_list, struct gds_cell **cell_ptr) cell->checks.affected_by_reference_loop = GDS_CELL_CHECK_NOT_RUN; cell->stats.reference_count = 0; cell->stats.total_vertex_count = 0; + cell->stats.total_gfx_count = 0; cell->stats.gfx_count = 0; cell->stats.vertex_count = 0; } else