From: Harald Anlauf Date: Sat, 11 Oct 2025 12:53:37 +0000 (+0200) Subject: fortran: fix bootstrap after r16-4372 [PR122257] X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=623a0da3c31e0e11b005502a1d31325e4530c5c6;p=thirdparty%2Fgcc.git fortran: fix bootstrap after r16-4372 [PR122257] PR fortran/50377 PR fortran/122257 gcc/fortran/ChangeLog: * resolve.cc (resolve_actual_arglist): Initialize variable. --- diff --git a/gcc/fortran/resolve.cc b/gcc/fortran/resolve.cc index 4c45de08f03..f419f5c7559 100644 --- a/gcc/fortran/resolve.cc +++ b/gcc/fortran/resolve.cc @@ -2030,7 +2030,7 @@ static bool resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype, bool no_formal_args) { - gfc_symbol *sym; + gfc_symbol *sym = NULL; gfc_symtree *parent_st; gfc_expr *e; gfc_component *comp;