Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion woff2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ <h4 id="UIntBase128-0">UIntBase128 Data Type</h4>
UInt8 data_byte = data.getNextUInt8();

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

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