Mantis Bugtracker
  

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

- Relationships

- Notes
(0003430)
ferg
09-11-08 15:08

hessian/3b2p
 

- Issue History
Date Modified Username Field Change
09-05-08 15:10 aloksingh New Issue
09-11-08 15:08 ferg Note Added: 0003430
09-11-08 15:08 ferg Assigned To  => ferg
09-11-08 15:08 ferg Status new => closed
09-11-08 15:08 ferg Resolution open => fixed
09-11-08 15:08 ferg Fixed in Version  => 3.2.1


Mantis 1.0.0rc3[^]
Copyright © 2000 - 2005 Mantis Group
29 total queries executed.
26 unique queries executed.
Powered by Mantis Bugtracker