411909 - GzipFilter flushbuffer() results in erroneous finish() call
+ Bad finish() call changed to more appropriate flush() call
This commit is contained in:
parent
0daddd1a3a
commit
162cbc1416
|
@ -245,7 +245,7 @@ public abstract class CompressedResponseWrapper extends HttpServletResponseWrapp
|
|||
if (_writer!=null)
|
||||
_writer.flush();
|
||||
if (_compressedStream!=null)
|
||||
_compressedStream.finish();
|
||||
_compressedStream.flush();
|
||||
else
|
||||
getResponse().flushBuffer();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue