| Anonymous | Login | Signup for a new account | 11-03-2025 18:09 PST | 
| Main | My View | View Issues | Change Log | Docs | 
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ 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 | ||||||
| Status | closed | Product Version | 3.2.0 | ||||||
| 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;
    }
	 | 
||||||||
| Additional Information | |||||||||
| Attached Files | |||||||||
| 
 | 
|||||||||
| 	Mantis 1.0.0rc3[^]
	Copyright © 2000 - 2005 Mantis Group
	29 total queries executed. 26 unique queries executed.  |