if (SvSCREAM(sv))
RETPUSHYES;
}
- else {
- if (PL_lastscream) {
- SvSCREAM_off(PL_lastscream);
- SvREFCNT_dec(PL_lastscream);
- }
- PL_lastscream = SvREFCNT_inc(sv);
+ s = (unsigned char*)(SvPV(sv, len));
+ pos = len;
+ if (pos <= 0 || !SvPOK(sv)) {
+ /* No point in studying a zero length string, and not safe to study
+ anything that doesn't appear to be a simple scalar (and hence might
+ change between now and when the regexp engine runs without our set
+ magic ever running, such as a reference to an object with overloaded
+ stringification. */
+ RETPUSHNO;
+ }
+
+ if (PL_lastscream) {
+ SvSCREAM_off(PL_lastscream);
+ SvREFCNT_dec(PL_lastscream);
}
+ PL_lastscream = SvREFCNT_inc(sv);
s = (unsigned char*)(SvPV(sv, len));
pos = len;
is( index( $x, 'f' ), -1, qq{"next" doesn't contain "f"} );
# Subsequent references to $x are "next", so should match /n/
- TODO: {
- local $TODO = $do_study ? 'not yet fixed' : 0;
- ok( $x =~ /n/, qq{"next" matches /n/} );
- }
+ ok( $x =~ /n/, qq{"next" matches /n/} );
is( index( $x, 'n' ), 0, qq{"next" contains "n" at pos 0} );
# The letter "t" is in both, but in different positions
- TODO: {
- local $TODO = $do_study ? 'not yet fixed' : 0;
- ok( $x =~ /t/, qq{"next" matches /t/} );
- }
- is( index( $x, 't' ), 3, qq{"next" contains "t" at pos 3} );
+ ok( $x =~ /t/, qq{"next" matches /x/} );
+ is( index( $x, 't' ), 3, qq{"next" contains "x" at pos 3} );
}