]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fortran: improve error recovery on invalid array section
authorHarald Anlauf <anlauf@gmx.de>
Wed, 9 Mar 2022 20:58:26 +0000 (21:58 +0100)
committerHarald Anlauf <anlauf@gmx.de>
Wed, 9 Mar 2022 20:58:26 +0000 (21:58 +0100)
gcc/fortran/ChangeLog:

PR fortran/104849
* expr.cc (find_array_section): Avoid NULL pointer dereference on
invalid array section.

gcc/testsuite/ChangeLog:

PR fortran/104849
* gfortran.dg/pr104849.f90: New test.

gcc/fortran/expr.cc
gcc/testsuite/gfortran.dg/pr104849.f90 [new file with mode: 0644]

index c9c0ba4cc2ec6e762bcabd2bfdcad2446be74312..86d61fed302187a1bfaf4da8215b9945681d13bf 100644 (file)
@@ -1594,7 +1594,9 @@ find_array_section (gfc_expr *expr, gfc_ref *ref)
        {
          if ((begin && begin->expr_type != EXPR_CONSTANT)
              || (finish && finish->expr_type != EXPR_CONSTANT)
-             || (step && step->expr_type != EXPR_CONSTANT))
+             || (step && step->expr_type != EXPR_CONSTANT)
+             || (!begin && !lower)
+             || (!finish && !upper))
            {
              t = false;
              goto cleanup;
diff --git a/gcc/testsuite/gfortran.dg/pr104849.f90 b/gcc/testsuite/gfortran.dg/pr104849.f90
new file mode 100644 (file)
index 0000000..ae221b5
--- /dev/null
@@ -0,0 +1,9 @@
+! { dg-do compile }
+! PR fortran/104849 - ICE in find_array_section
+! Contributed by G.Steinmetz
+
+program p
+  integer, parameter :: a(:) = [1, 2] ! { dg-error "deferred shape" }
+  integer :: x(2)
+  data x /a(:)/                       ! { dg-error "Invalid" }
+end