W3C

Errata in WOFF 2.0 W3C Recommendation of 2018-Mar-01

2018-Apr-30: Fix typo in ReadUIntBase128 pseudo-code

Section 3.1: correct a typo (assignment operator should be equality operator) in pseudo-code. (GitHub)

    UInt8 data_byte = data.getNextUInt8();

    // No leading 0's
    if (i == 0 && data_byte = 0x80) return false;
    if (i == 0 && data_byte == 0x80) return false;

    // If any of top 7 bits are set then << 7 would overflow
    if (accum & 0xFE000000) return false;

Source

The latest version of the source document is on GitHub

$Id: REC-WOFF2-20180301-errata.html,v 1.2 2018/04/30 20:41:12 clilley Exp $