Mantis - Hessian
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
3690 | minor | always | 09-18-09 09:53 | 12-16-09 16:19 | |
|
|||||
Reporter: | ferg | Platform: | |||
Assigned To: | ferg | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 4.0.1 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 4.0.3 | ||
|
|||||
Summary: | 0003690: Hessian 2 Input bug | ||||
Description: |
(rep by Adam Bryzak) --- com/caucho/hessian/io/Hessian2Input.java (revision 38820) +++ com/caucho/hessian/io/Hessian2Input.java (working copy) @@ -2466,6 +2466,11 @@ _chunkLength = code - 0x00; break; + case 0x30: case 0x31: case 0x32: case 0x33: + _isLastChunk = true; + _chunkLength = (code - 0x30) * 256 + read(); + break; + default: throw expect("string", code); } |
||||
Steps To Reproduce: | |||||
Additional Information: | |||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|