https://issues.apache.org/bugzilla/show_bug.cgi?id=53725

--- Comment #12 from Konstantin Kolinko <knst.koli...@gmail.com> ---
I reverted the fix in r1378402
and implemented a different one in r1378403 + r1378408 
(will be in 7.0.30)


The FlushableGZIPOutputStream#deflate() method is not called by this class
directly, but by its parent class, DeflaterOutputStream.
Such calls are always in a loop,

            while (!def.needsInput()) {
                deflate();
            }
        while (!def.finished()) {
        deflate();
        }

so I there should not be a need to add (!def.needsInput()) condition to the
deflate() method itself.

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to