Mantis - Hessian
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
2909 | major | always | 09-05-08 15:10 | 09-11-08 15:08 | |
|
|||||
Reporter: | aloksingh | Platform: | |||
Assigned To: | ferg | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 3.2.0 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 3.2.1 | ||
|
|||||
Summary: | 0002909: BasicDeserialized.readLengthList does not pick long arrays | ||||
Description: |
The switch block has no case statement for LONG_ARRAY, so will bomb when encountering fields of type long[] FIX: Add the following case statement case LONG_ARRAY: { long []data = new long[length]; in.addRef(data); for (int i = 0; i < data.length; i++) data[i] = in.readLong(); return data; } |
||||
Steps To Reproduce: | |||||
Additional Information: | |||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|