From: Nicholas Clark Date: Fri, 4 Nov 2005 21:03:58 +0000 (+0000) Subject: You can't there from here. (Dead code in sv_2pv_flags) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0a2d26d92481df1892a243c1a740dcd2effde1fa;p=p5sagit%2Fp5-mst-13.2.git You can't there from here. (Dead code in sv_2pv_flags) p4raw-id: //depot/perl@26002 --- diff --git a/sv.c b/sv.c index 19cb7b3..7409213 100644 --- a/sv.c +++ b/sv.c @@ -3252,7 +3252,9 @@ Perl_sv_2pv_flags(pTHX_ register SV *sv, STRLEN *lp, I32 flags) STRLEN len; const char *t; + assert (!tsv); if (tsv) { + /* There is no code path that can get you here. */ sv_2mortal(tsv); t = SvPVX_const(tsv); len = SvCUR(tsv);