mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-28 15:57:48 +00:00
Formerly read.c.~67~
This commit is contained in:
parent
8788690192
commit
8171a9ba6e
1 changed files with 6 additions and 0 deletions
6
read.c
6
read.c
|
@ -552,6 +552,12 @@ read_makefile (filename, flags)
|
|||
| (noerror ? RM_DONTCARE : 0)));
|
||||
}
|
||||
|
||||
/* Free any space allocated by conditional_line. */
|
||||
if (conditionals->ignoring)
|
||||
free (conditionals->ignoring);
|
||||
if (conditionals->seen_else)
|
||||
free (conditionals->seen_else);
|
||||
|
||||
/* Restore state. */
|
||||
conditionals = save;
|
||||
reading_filename = filename;
|
||||
|
|
Loading…
Reference in a new issue