PR 30954
* ldlang.c (map_input_to_output_sections): Check that os is non NULL before using it.
+2023-10-09 Nick Clifton <nickc@redhat.com>
+
+ PR 30954
+ * ldlang.c (map_input_to_output_sections): Check that os is non
+ NULL before using it.
+
2023-10-05 A. Wilcox <awilfox@adelielinux.org>
PR 30905
os);
break;
case lang_data_statement_enum:
+ if (os == NULL)
+ /* This should never happen. */
+ FAIL ();
/* Make sure that any sections mentioned in the expression
are initialized. */
exp_init_os (s->data_statement.exp);