summaryrefslogtreecommitdiff
path: root/variable.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2005-09-26 05:16:31 +0000
committerPaul Smith <psmith@gnu.org>2005-09-26 05:16:31 +0000
commitd6cb11ab36213a7765d3563b27afcc430a35fa40 (patch)
tree5a4d57b74c6259e674187757bc7a09d5305be23d /variable.c
parentea4a05a8789dd85735087e01f16fb54e41045107 (diff)
downloadmake-d6cb11ab36213a7765d3563b27afcc430a35fa40.tar.gz
Make sure to assign a boolean value to a 1-bit bitfield. Reported on
the bug-make mailing list. Fix Savannah bug # 14527: remember to free temporary line constructor memory if the line is empty.
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/variable.c b/variable.c
index 2f1826f3..43964a59 100644
--- a/variable.c
+++ b/variable.c
@@ -446,7 +446,7 @@ lookup_variable_in_set (const char *name, unsigned int length,
void
initialize_file_variables (struct file *file, int reading)
{
- register struct variable_set_list *l = file->variables;
+ struct variable_set_list *l = file->variables;
if (l == 0)
{