This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f14ed3c
)
(Retracted by #12777)
author
Michael G. Schwern
<schwern@pobox.com>
Mon, 29 Oct 2001 23:01:08 +0000
(18:01 -0500)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Tue, 30 Oct 2001 03:03:49 +0000
(
03:03
+0000)
Subject: Perlbug
19990906
.001 - segfault on long escaped quote regex
Message-ID: <
20011029230108
.G18053@blackrider>
p4raw-id: //depot/perl@12776
t/run/kill_perl.t
patch
|
blob
|
blame
|
history
diff --git
a/t/run/kill_perl.t
b/t/run/kill_perl.t
index
9f20360
..
f600435
100644
(file)
--- a/
t/run/kill_perl.t
+++ b/
t/run/kill_perl.t
@@
-809,3
+809,9
@@
read($bla, FILE, 1);
EXPECT
Can't modify constant item in read at - line 1, near "1)"
Execution of - aborted due to compilation errors.
+######## [ID 19990906.001]
+$line = ('a' x 99999) . ";'"; . ('a' x 20000);
+$line =~ m";(?:\s*\'(?:[^\\']|\\.)*\'\s*)";;
+print "ok\n";
+EXPECT
+ok