You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2020/01/17 15:54:50 UTC

[Bug 64082] Nio2Endpoint for async request doesn't clear OutputBuffer when socket has already been closed (response mixup)

https://bz.apache.org/bugzilla/show_bug.cgi?id=64082

--- Comment #1 from william.crowell@roguewave.com ---
For reference:

Tomcat 8.5.3 - 8.5.31 and 9.0.0 - 9.0.8:

...
@Override

public boolean isClosed()

{ return !getSocket().isOpen(); }
...

Tomcat 8.5.32 - 8.5.37 and 9.0.9 - 9.0.14

...
@Override

public boolean isClosed()

{ return closed || !getSocket().isOpen(); }
...

Tomcat 8.5.38 - 8.5.50 and 9.0.15 - 9.0.21:

...
@Override

public boolean isClosed()

{ return closed; }
...

This code has been rewritten from 9.0.22 and on.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org