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 /util.c | |
parent | f7997f866fdcafc687fbaa99dbeb48f109b2e8d8 (diff) | |
download | perl-42d9b98d3f03094883cfc4bb765785a6d4396077.tar.gz |
Eliminate some unnecessary strlen()s
p4raw-id: //depot/perl@26050
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3759,7 +3759,7 @@ Perl_getcwd_sv(pTHX_ register SV *sv) * size from the heap if they are given a NULL buffer pointer. * The problem is that this behaviour is not portable. */ if (getcwd(buf, sizeof(buf) - 1)) { - sv_setpvn(sv, buf, strlen(buf)); + sv_setpv(sv, buf); return TRUE; } else { |