Mantis Bugtracker
  

Viewing Issue Advanced Details Jump to Notes ] View Simple ] Issue History ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0002466 [Resin] minor always 02-28-08 17:59 03-05-08 14:49
Reporter zipeg View Status public  
Assigned To ferg
Priority normal Resolution fixed Platform
Status closed   OS
Projection none   OS Version
ETA none Fixed in Version 3.1.6 Product Version 3.0.26
  Product Build
Summary 0002466: hessian
Description com.caucho.hessian.io.JavaDeserializer
line 109-113 are:
      if (cost < 0 || cost > (1 << 48))
    cost = 1 << 48;
      cost += param.length << 48;
should be:
      if (cost < 0 || cost > (1L << 48))
    cost = 1L << 48;
      cost += (long)param.length << 48;


Steps To Reproduce
Additional Information
Attached Files

- Relationships

There are no notes attached to this issue.

- Issue History
Date Modified Username Field Change
02-28-08 17:59 zipeg New Issue
03-05-08 14:49 ferg Assigned To  => ferg
03-05-08 14:49 ferg Status new => closed
03-05-08 14:49 ferg Resolution open => fixed
03-05-08 14:49 ferg Fixed in Version  => 3.1.6


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