From 4200941b0f3b7353c497f342d49c64499f985ef2 Mon Sep 17 00:00:00 2001 From: Matt Welsh Date: Wed, 5 Apr 2000 18:50:22 +0000 Subject: jcf-depend.c (add_entry): Fixed bug where list was always replaced with latest entry. 2000-04-03 Matt Welsh * jcf-depend.c (add_entry): Fixed bug where list was always replaced with latest entry. From-SVN: r32936 --- gcc/java/jcf-depend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/java/jcf-depend.c') diff --git a/gcc/java/jcf-depend.c b/gcc/java/jcf-depend.c index 3fb8c00..79d060a 100644 --- a/gcc/java/jcf-depend.c +++ b/gcc/java/jcf-depend.c @@ -94,7 +94,7 @@ add_entry (entp, name) ent->file = xstrdup (name); ent->next = NULL; - if (last == *entp) + if (last == NULL) { // This is only true the first time through, when the entry list // is empty. -- cgit v1.1