| Anonymous | Login | Signup for a new account | 10-26-2025 16:59 PDT |
| Main | My View | View Issues | Change Log | Docs |
| Viewing Issue Advanced Details [ Jump to Notes ] | [ View Simple ] [ Issue History ] [ Print ] | ||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||||
| 0002909 | [Hessian] | major | always | 09-05-08 15:10 | 09-11-08 15:08 | ||||
| Reporter | aloksingh | View Status | public | ||||||
| Assigned To | ferg | ||||||||
| Priority | normal | Resolution | fixed | Platform | |||||
| Status | closed | OS | |||||||
| Projection | none | OS Version | |||||||
| ETA | none | Fixed in Version | 3.2.1 | Product Version | 3.2.0 | ||||
| Product Build | |||||||||
| 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 | |||||||||
| Attached Files | |||||||||
|
|
|||||||||
| Mantis 1.0.0rc3[^]
Copyright © 2000 - 2005 Mantis Group
29 total queries executed. 26 unique queries executed. |