From b0f368691e0c9f8badd0ad3b430c56ed37072abc Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Fri, 19 Apr 1991 01:00:45 +0000 Subject: Fixed a bug where wild scripts stopped working. Fixed another bug in -R symbol handling --- ld/ldlang.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ld/ldlang.c') diff --git a/ld/ldlang.c b/ld/ldlang.c index afbc385..4c57f2b 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -643,7 +643,8 @@ DEFUN(wild,(s, section, file, target, output), /* Perform the iteration over a single file */ wild_section( s, section, lookup_name(file), output); } - if (strcmp(section,"COMMON") == 0 + if (section != (char *)NULL + && strcmp(section,"COMMON") == 0 && default_common_section == (lang_output_section_statement_type*)NULL) { /* Remember the section that common is going to incase we later -- cgit v1.1