From: Nicholas Clark Date: Sun, 16 Apr 2006 21:44:59 +0000 (+0000) Subject: Fix bug introduced with change 27841. (len + 1, not just len). X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8f01dc65ffe0fac5309bf561048e6ae93442a218;p=p5sagit%2Fp5-mst-13.2.git Fix bug introduced with change 27841. (len + 1, not just len). p4raw-id: //depot/perl@27852 --- diff --git a/sv.c b/sv.c index 308ecf8..429794f 100644 --- a/sv.c +++ b/sv.c @@ -3924,7 +3924,7 @@ Perl_sv_usepvn_flags(pTHX_ SV *sv, char *ptr, STRLEN len, U32 flags) assert(ptr[len] == '\0'); allocate = (flags & SV_HAS_TRAILING_NUL) - ? len : PERL_STRLEN_ROUNDUP(len + 1); + ? len + 1: PERL_STRLEN_ROUNDUP(len + 1); #ifdef DEBUGGING { /* Force a move to shake out bugs in callers. */