compiler: Check for EOF in malformed signatures.
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 11 Aug 2015 23:11:36 +0000 (23:11 +0000)
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 11 Aug 2015 23:11:36 +0000 (23:11 +0000)
    When parsing a malformed function declaration with invalid parameters,
    gccgo would infinitely loop looking for the end of the function
    declaration.

    Fixes golang/go#11530, golang/go#11531.

    Reviewed-on: https://go-review.googlesource.com/13065

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226795 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/go/gofrontend/MERGE
gcc/go/gofrontend/parse.cc

index 2cbe25c..5046fbb 100644 (file)
@@ -1,4 +1,4 @@
-3b590ff53700963c1b8207a78594138e6a4e47f4
+55175f7ee0db2c1e68423216d7744be80071ed6c
 
 The first line of this file holds the git revision number of the last
 merge done from the gofrontend repository.
index 7f7eba4..211fd73 100644 (file)
@@ -1045,7 +1045,8 @@ Parse::parameter_decl(bool parameters_have_names,
            {
              *mix_error = true;
              while (!this->peek_token()->is_op(OPERATOR_COMMA)
-                    && !this->peek_token()->is_op(OPERATOR_RPAREN))
+                    && !this->peek_token()->is_op(OPERATOR_RPAREN)
+                     && !this->peek_token()->is_eof())
                this->advance_token();
            }
        }