[jboss-user] [JBoss Seam] - Re: ArrayIndexOutOfBounds in MultipartRequest
vladimir.ralev@jboss.com
do-not-reply at jboss.com
Tue May 15 15:11:13 EDT 2007
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
More information about the jboss-user
mailing list