Commit 1e39a151 by Jakub Jelinek Committed by Jakub Jelinek

scanner.c (preprocessor_line): Don't write beyond the end of flag buffer.

	* scanner.c (preprocessor_line): Don't write beyond the end of flag
	buffer.

From-SVN: r102902
parent 6a26ea58
2005-08-09 Jakub Jelinek <jakub@redhat.com>
* scanner.c (preprocessor_line): Don't write beyond the end of flag
buffer.
2005-08-07 Janne Blomqvist <jblomqvi@cc.hut.fi>
PR fortran/22390
......
......@@ -882,7 +882,7 @@ preprocessor_line (char *c)
/* Get flags. */
flag[1] = flag[2] = flag[3] = flag[4] = flag[5] = false;
flag[1] = flag[2] = flag[3] = flag[4] = false;
for (;;)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment