My hobbyist coding updates and releases as the mysterious "Mr. Tines"

Wednesday 30 May 2001

Fencepost error in bignums.c routine s_m_mod()

    register unit divisor = topUnit + 1;
    assert(firstUnit < topUnit);     /* required for udiv_qrnnd */

The assert should be

assert(firstUnit < divisor)