commit | 9c6265d339424b504b515cdaf078342a4dc11778 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Mon Sep 12 14:03:53 2011 -0400 |
committer | Russ Cox <rsc@golang.org> | Mon Sep 12 14:03:53 2011 -0400 |
tree | 27f115603cb3bee51a23e0b7053e98e2b869ab5b | |
parent | 73fd9e7d9389579b5a2ea401df18b7316fa66323 [diff] [blame] |
exp/regexp/syntax: fix invalid input parser crash Reported by Kyle Lemons. R=r CC=golang-dev https://golang.org/cl/4992045
diff --git a/src/pkg/exp/regexp/syntax/parse_test.go b/src/pkg/exp/regexp/syntax/parse_test.go index 5c8107c..f20276c 100644 --- a/src/pkg/exp/regexp/syntax/parse_test.go +++ b/src/pkg/exp/regexp/syntax/parse_test.go
@@ -482,6 +482,7 @@ "a?*", "a+*", "a{1}*", + ".{1}{2}.{3}", } func TestParseInvalidRegexps(t *testing.T) {