summaryrefslogtreecommitdiff
path: root/pp_sort.c
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2005-04-16 06:05:02 -0500
committerNicholas Clark <nick@ccl4.org>2005-04-18 12:18:20 +0000
commitf880fe2f705a50a69328065c7b46fe16e2c252e8 (patch)
treeb6416494bb1c7d69a0aa108e470892dd09a6f3c3 /pp_sort.c
parentbfe08c74b6c277925a0a4c6d707ff24113ccca13 (diff)
downloadperl-f880fe2f705a50a69328065c7b46fe16e2c252e8.tar.gz
Refactoring to Sv*_set() macros - patch #4
Message-ID: <20050416160502.GA26957@mccoy.peters.homeunix.org> plus fix to Perl_rvpv_dup assigning to an RV with SvPVX p4raw-id: //depot/perl@24239
Diffstat (limited to 'pp_sort.c')
-rw-r--r--pp_sort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_sort.c b/pp_sort.c
index 1bd5719495..380194df2c 100644
--- a/pp_sort.c
+++ b/pp_sort.c
@@ -1748,12 +1748,12 @@ sortcv_stacked(pTHX_ SV *a, SV *b)
SV** ary = AvALLOC(av);
if (AvARRAY(av) != ary) {
AvMAX(av) += AvARRAY(av) - AvALLOC(av);
- SvPVX(av) = (char*)ary;
+ SvPV_set(av, (char*)ary);
}
if (AvMAX(av) < 1) {
AvMAX(av) = 1;
Renew(ary,2,SV*);
- SvPVX(av) = (char*)ary;
+ SvPV_set(av, (char*)ary);
}
}
AvFILLp(av) = 1;