diff options
author | Nicolas R <atoomic@cpan.org> | 2017-09-25 13:37:06 -0500 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2017-10-19 14:21:10 +1100 |
commit | 59c3c222a42121edb1b3cdd9c71d3c878e3ddb18 (patch) | |
tree | 0297f2d6baffec7d003d2b419aa9f9d75d5ca36e /universal.c | |
parent | dc280c2b67516b7246d304d3e555b7b6dbc9f907 (diff) | |
download | perl-59c3c222a42121edb1b3cdd9c71d3c878e3ddb18.tar.gz |
Use SvLEN_set/SvCUR_set in a few extra locations
SvLEN was set without using the generic macro SvLEN_set.
Use it in three extra locations, and also use SvCUR_set
instead of SvCUR.
Diffstat (limited to 'universal.c')
-rw-r--r-- | universal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/universal.c b/universal.c index 65477fb775..2262939b8d 100644 --- a/universal.c +++ b/universal.c @@ -225,8 +225,8 @@ Perl_sv_does_sv(pTHX_ SV *sv, SV *namesv, U32 flags) /* create a PV with value "isa", but with a special address * so that perl knows we're really doing "DOES" instead */ methodname = newSV_type(SVt_PV); - SvLEN(methodname) = 0; - SvCUR(methodname) = strlen(PL_isa_DOES); + SvLEN_set(methodname, 0); + SvCUR_set(methodname, strlen(PL_isa_DOES)); SvPVX(methodname) = (char *)PL_isa_DOES; /* discard 'const' qualifier */ SvPOK_on(methodname); sv_2mortal(methodname); |