Skip to content

Commit

Permalink
fix inflater deallocation
Browse files Browse the repository at this point in the history
  • Loading branch information
optyfr committed Jun 1, 2018
1 parent c668ee5 commit 38f21ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JTrrntzip/SupportedFiles/ZipFile/ZipFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ public final void close()
if(deflater.get()!=null)
deflater.get().end();
if(inflater.get()!=null)
deflater.get().end();
inflater.get().end();
if (_esbc != null)
{
try
Expand Down

0 comments on commit 38f21ba

Please sign in to comment.