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:
4f8dbb2
)
pp.c: Restore uninit warning to study
author
Father Chrysostomos
<sprout@cpan.org>
Wed, 27 Jun 2012 19:41:56 +0000
(12:41 -0700)
committer
Father Chrysostomos
<sprout@cpan.org>
Wed, 27 Jun 2012 19:41:56 +0000
(12:41 -0700)
Also, prevent a crash when SvCUR is used on a non-PV.
pp.c
patch
|
blob
|
blame
|
history
diff --git
a/pp.c
b/pp.c
index
c7d1841
..
1742baa
100644
(file)
--- a/
pp.c
+++ b/
pp.c
@@
-652,7
+652,7
@@
PP(pp_study)
dVAR; dSP; dPOPss;
STRLEN len;
-
len = SvCUR(sv
);
+
(void)SvPV(sv, len
);
if (len == 0 || len > I32_MAX || !SvPOK(sv) || SvUTF8(sv) || SvVALID(sv)) {
/* Historically, study was skipped in these cases. */
RETPUSHNO;