Commit 16c5f3c5 authored by serg@serg.mylan's avatar serg@serg.mylan

allocate temp array big enough for not to worry about bound checking in look-aheads

parent e64d290b
......@@ -1362,6 +1362,7 @@ static int do_div_mod(decimal *from1, decimal *from2,
*buf0++=0;
len1=(i=ROUND_UP(prec1))+ROUND_UP(2*frac2+scale_incr+1);
set_if_bigger(len1, 3);
if (!(tmp1=my_alloca(len1*sizeof(dec1))))
return E_DEC_OOM;
memcpy(tmp1, buf1, i*sizeof(dec1));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment