Skip to content

Commit

Permalink
fix decode bug
Browse files Browse the repository at this point in the history
  • Loading branch information
chenby committed May 22, 2019
1 parent 1ea70e3 commit 46c1bc1
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,12 @@ public byte[] decode(byte[] bytes) {
}
break;
default:
s.put((byte)'\\');
s.put(bytes[i]);
break;
}
} else {
s.put((byte)'\\');
}
break;
default:
Expand Down

0 comments on commit 46c1bc1

Please sign in to comment.