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#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...