From bffe41223467cb6d9a87c1a057966924fbda6c40 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Sun, 18 Oct 2020 00:00:58 +0200 Subject: xml.c: initialize i = 0 Forgot it in the cleanup commit 37afcf334fa1ba0b668bde08e8fcaaa9fd7dfa0d --- xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xml.c') diff --git a/xml.c b/xml.c index 9c15e11..84c78ce 100644 --- a/xml.c +++ b/xml.c @@ -116,7 +116,7 @@ startvalue: static void xml_parsecomment(XMLParser *x) { - int c, i; + int c, i = 0; while ((c = GETNEXT()) != EOF) { if (c == '-') { -- cgit v1.2.3