Mantis - Resin
Viewing Issue Advanced Details
2466 minor always 02-28-08 17:59 03-05-08 14:49
zipeg  
ferg  
normal  
closed 3.0.26  
fixed  
none    
none 3.1.6  
0002466: hessian
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;



There are no notes attached to this issue.