From: Pter Chubb Date: Tue, 18 Jul 2023 16:06:14 +0000 (+0100) Subject: PR 30632 - ld segfaults if linker script includes a STARTUP line. X-Git-Tag: binutils-2_41~42 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5d17455d0d627c04af6ca66b3dfdca9fd3276fb3;p=thirdparty%2Fbinutils-gdb.git PR 30632 - ld segfaults if linker script includes a STARTUP line. --- diff --git a/ld/ldlang.c b/ld/ldlang.c index b3a89bf041b..a357f80235f 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -1136,9 +1136,15 @@ new_afile (const char *name, lang_has_input_file = true; - name = ldfile_possibly_remap_input (name); - if (name == NULL) - return NULL; + /* PR 30632: It is OK for name to be NULL. For example + see the initialization of first_file in lang_init(). */ + if (name != NULL) + { + name = ldfile_possibly_remap_input (name); + /* But if a name is remapped to NULL, it should be ignored. */ + if (name == NULL) + return NULL; + } p = new_stat (lang_input_statement, stat_ptr); memset (&p->the_bfd, 0,