Skip to content
Open
Changes from 1 commit
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
Next Next commit
FIX: Calling Decode multiple times from same instance returned corrup…
…t data
  • Loading branch information
cyotek committed Nov 8, 2016
commit ba33322b3ff665d3cefaaa177300e049f43137ab
2 changes: 2 additions & 0 deletions Ascii85ConsoleSolution/Ascii85.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ public byte[] Decode(string s)
s = s.Substring(0, s.Length - SuffixMark.Length);
}

_tuple = 0;

MemoryStream ms = new MemoryStream();
int count = 0;
bool processChar = false;
Expand Down