Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
0.8, 0.9
-
Any
-
Patch Available
Description
The problem exists when reading list, set or map.
The 'xfer' variable is not updated by size of beginning and ending.
Current generated code:
iprot->read***Begin();
iprot->read***End();
Correctly generated code:
xfer += iprot->read***Begin();
xfer += iprot->read***End();