jcast (Jeremie Castagna)
- Login: jcast
- Email: jeremie.castagna@gmail.com
- Registered on: 05/16/2012
- Last sign in: 05/16/2012
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
05/16/2012
-
05:27 AM Ruby Bug #6436: Byte counting incorrect in BufferedIO (net/protocol.rb)
- Patch file.
-
05:09 AM Ruby Bug #6436 (Closed): Byte counting incorrect in BufferedIO (net/protocol.rb)
- BufferedIO's @rbuf counts bytes with String#size, but should use String#bytesize. This creates potential incorrect reading of a HTTP body when changing the encoding of each chuck passed by HTTP#read_body:
http.read_body do |chunk|
...