From f17db21bf099b3dbd33675735acd5b83b7dbfa3c Mon Sep 17 00:00:00 2001 From: Larry Doolittle Date: Thu, 22 May 2008 15:23:26 -0700 Subject: [PATCH] Make sure stringify_flag is always initialized. Put in one last initialization of stringify_flag, that Cary missed in add84b153c24a01d6fc06130b804501d5d51ce3e and Steve missed in 73dcace78127aed6bc9bdaaa65bc8d82d3cbd807. Found the long, hard way. --- ivlpp/lexor.lex | 1 + 1 file changed, 1 insertion(+) diff --git a/ivlpp/lexor.lex b/ivlpp/lexor.lex index 2997e371c..098ef38f7 100644 --- a/ivlpp/lexor.lex +++ b/ivlpp/lexor.lex @@ -1745,6 +1745,7 @@ void reset_lexor(FILE* out, char* paths[]) isp->ebs = 0; isp->next = 0; isp->lineno = 0; + isp->stringify_flag = 0; if (tail) tail->next = isp;