Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> writes:
> Applied to 7.1.X and 7.2.
But, but...
> > - return srclen + (srclen / 3) + (srclen / (76 / 2));
> > + return srclen + (srclen + 2 / 3) + (srclen / (76 / 2)) + 2;
(srclen + 2 / 3) is always the same as (srclen).
Perhaps this was meant to be ((srclen + 2) / 3)?
The current code is safe, but weird.
Ian