commit bffe41223467cb6d9a87c1a057966924fbda6c40
parent 3bce637a2a610c7991b7cbf87c530d87b019c3d6
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Sun, 18 Oct 2020 00:00:58 +0200
xml.c: initialize i = 0
Forgot it in the cleanup commit 37afcf334fa1ba0b668bde08e8fcaaa9fd7dfa0d
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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 == '-') {