summaryrefslogtreecommitdiff
path: root/read.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1994-04-01 23:44:10 +0000
committerRoland McGrath <roland@redhat.com>1994-04-01 23:44:10 +0000
commit0513e295932e4e2cc0f116eb9f2d254ca8568245 (patch)
tree4c8561bfefa878654a99c09e6bff72acbd02bbe1 /read.c
parent087ef58502db8b2f4c5e58d129a9226ebb376c74 (diff)
downloadgunmake-0513e295932e4e2cc0f116eb9f2d254ca8568245.tar.gz
(read_makefile): Remove unused variable.
(parse_file_seq): When removing an elt that is just `)', properly fix up the previous elt's next pointer.
Diffstat (limited to 'read.c')
-rw-r--r--read.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/read.c b/read.c
index fdb8be2..99bcbfc 100644
--- a/read.c
+++ b/read.c
@@ -435,7 +435,6 @@ read_makefile (filename, flags)
in_ignored_define = 1;
else
{
- unsigned int len;
p2 = end_of_token (p2);
/* Let the variable name be the whole rest of the line,
with trailing blanks stripped (comments have already been
@@ -1508,7 +1507,7 @@ parse_file_seq (stringp, stopchar, size, strip)
int strip;
{
register struct nameseq *new = 0;
- register struct nameseq *new1;
+ register struct nameseq *new1, *lastnew1;
register char *p = *stringp;
char *q;
char *name;
@@ -1569,7 +1568,7 @@ parse_file_seq (stringp, stopchar, size, strip)
an elt further down the chain (i.e., previous in the file list)
with an unmatched `(' (e.g., "lib(mem"). */
- for (new1 = new; new1 != 0; new1 = new1->next)
+ for (new1 = new, lastnew1 = 0; new1 != 0; lastnew1 = new1, new1 = new1->next)
if (new1->name[0] != '(' /* Don't catch "(%)" and suchlike. */
&& new1->name[strlen (new1->name) - 1] == ')'
&& index (new1->name, '(') == 0)
@@ -1623,10 +1622,12 @@ parse_file_seq (stringp, stopchar, size, strip)
{
/* NEW1 is just ")", part of something like "lib(a b )".
Omit it from the chain and free its storage. */
+ if (lastnew1 == 0)
+ new = new1->next;
+ else
+ lastnew1->next = new1->next;
lastn = new1;
new1 = new1->next;
- if (new == lastn)
- new = new1;
free (lastn->name);
free ((char *) lastn);
}