Skip to content

Commit

Permalink
Fix setting of buffer position
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdettman committed Feb 7, 2019
1 parent 11f435e commit 558d089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/src/util/zlib/Deflate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@ internal class Config{
pending_buf = new byte[lit_bufsize*4];
pending_buf_size = lit_bufsize*4;

d_buf = lit_bufsize/2;
d_buf = lit_bufsize;
l_buf = (1+2)*lit_bufsize;

this.level = level;
Expand Down

0 comments on commit 558d089

Please sign in to comment.