Looks like

  |       if (pos - seq.length < 0 || pos > data.length)
  |          return false;
  | 

should be


  |       if (pos - seq.length < 0 || pos >= data.length)
  |          return false;
  | 

in MultipartRequest.checkSequence

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4045923#4045923

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4045923
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to