diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-11-08 21:37:52 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-11-08 21:37:52 +0000 |
commit | 42d9b98d3f03094883cfc4bb765785a6d4396077 (patch) | |
tree | cb639739736f31b4c4068d5e3c9eb09b306d89fd /sv.c | |
parent | f7997f866fdcafc687fbaa99dbeb48f109b2e8d8 (diff) | |
download | perl-42d9b98d3f03094883cfc4bb765785a6d4396077.tar.gz |
Eliminate some unnecessary strlen()s
p4raw-id: //depot/perl@26050
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8720,7 +8720,7 @@ Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV { q++; /* skip past the rest of the %vd format */ eptr = (const char *) vecstr; - elen = strlen(eptr); + elen = veclen; vectorize=FALSE; goto string; } |