https://issues.apache.org/bugzilla/show_bug.cgi?id=57581
Bug ID: 57581
Summary: request.getBytesRead() should be long
Product: Tomcat 7
Version: unspecified
Hardware: PC
OS: All
Status: NEW
Severity: normal
Priority: P2
Component: Servlet & JSP API
Assignee: [email protected]
Reporter: [email protected]
Class org.apache.coyote.Request has bytesRead variable's return type is int.
When file upload (grater than 2 GB), it returns negative value.
Return type should be change to long.
This bug affected all version of tomcat 6, 7, 8, 9.
---------------------------------------------------------
* AS-IS
private int bytesRead=0;
public int getBytesRead() {
return bytesRead;
}
* TO-BE
private long bytesRead=0;
public long getBytesRead() {
return bytesRead;
}
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]