diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2007-03-27 18:07:52 +0300 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2007-03-27 12:30:11 +0000 |
commit | 19a94d75aea23d860dc398284bf0810d3e2bbfa2 (patch) | |
tree | abd158e3b58402c2c78f68aea12fb4a6ca4e40cb /pp.c | |
parent | d3df0cfdbd533cd6ac647744531e0fed3b26c653 (diff) | |
download | perl-19a94d75aea23d860dc398284bf0810d3e2bbfa2.tar.gz |
stop the cargo cult of (MEM_SIZE)~0
Message-Id: <200703271207.l2RC7qOC443040@kosh.hut.fi>
p4raw-id: //depot/perl@30774
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1537,7 +1537,7 @@ PP(pp_repeat) SvCUR_set(TARG, 0); else { const STRLEN max = (UV)count * len; - if (len > ((MEM_SIZE)~0)/count) + if (len > MEM_SIZE_MAX / count) Perl_croak(aTHX_ oom_string_extend); MEM_WRAP_CHECK_1(max, char, oom_string_extend); SvGROW(TARG, max + 1); |