Skip to content

Commit 5b23007

Browse files
authored
Merge pull request #5 from SheepChef/master
Fix a minor undefined variable error.
2 parents 87d4c2b + c601903 commit 5b23007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unishox2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ function unishox2_compress(input, len, out, usx_hcodes, usx_hcode_lens, usx_freq
727727
if (c_in === 9) {
728728
[ol, state] = append_code(out, olen, ol, TAB_CODE, state, usx_hcodes, usx_hcode_lens);
729729
} else {
730-
var uni, utf8len;
730+
var uni, utf8len, uni2;
731731
[uni, utf8len] = readUTF8(input, len, l);
732732
if (uni > 0) {
733733
l += utf8len;

0 commit comments

Comments
 (0)