Wire produces invalid log skipping zero bytes in certain cases
--------------------------------------------------------------

                 Key: HTTPCLIENT-837
                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-837
             Project: HttpComponents HttpClient
          Issue Type: Bug
            Reporter: Kirill Safonov
            Priority: Critical
             Fix For: 3.1.1


WireLogInputStream class line 82 check if the byte returned is not -1 meaning 
end of stream. But the condition is wrong in case if this byte is 0, it should 
look like
{code}
if (l != -1) {
//...
}
{code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to