Fix WebSocket CompressExtension releaseDeflater() bug.

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2019-09-27 10:18:35 +10:00
parent 44cb6881e4
commit aa417f939e
1 changed files with 2 additions and 2 deletions

View File

@ -119,8 +119,8 @@ public abstract class CompressExtension extends AbstractExtension
public void releaseDeflater()
{
getInflaterPool().release(inflaterImpl);
inflaterImpl = null;
getDeflaterPool().release(deflaterImpl);
deflaterImpl = null;
}
/**