-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IndexOutOfBoundsExcepion
in GuidedSearchUtility.collectPublicCalls
#115
Comments
The original crash log of LANG-9b is: java.lang.ArrayIndexOutOfBoundsException: 4
1 | at org.apache.commons.lang3.time.FastDateParser.toArray(FastDateParser.java:413)
2 | at org.apache.commons.lang3.time.FastDateParser.getDisplayNames(FastDateParser.java:381)
3 | at org.apache.commons.lang3.time.FastDateParser$TextStrategy.addRegex(FastDateParser.java:664)
4 | at org.apache.commons.lang3.time.FastDateParser.init(FastDateParser.java:138)
5 | at org.apache.commons.lang3.time.FastDateParser.<init>(FastDateParser.java:108)
6 | at org.apache.commons.lang3.time.FastDateFormat.<init>(FastDateFormat.java:370)
7 | at org.apache.commons.lang3.time.FastDateFormat$1.createInstance(FastDateFormat.java:91)
8 | at org.apache.commons.lang3.time.FastDateFormat$1.createInstance(FastDateFormat.java:88)
9 | at org.apache.commons.lang3.time.FormatCache.getInstance(FormatCache.java:82)
10 | at org.apache.commons.lang3.time.FastDateFormat.getInstance(FastDateFormat.java:165) The problem is that at line 88 an anonymous inner class ( 88 | private static final FormatCache<FastDateFormat> cache= new FormatCache<FastDateFormat>() {
89 | @Override
90 | protected FastDateFormat createInstance(String pattern, TimeZone timeZone, Locale locale) {
91 | return new FastDateFormat(pattern, timeZone, locale);
92 | }
93 | }; In the bytecode of the inner class:
Under these circumstances, Botsing thinks the target method is |
Characteristics
Description
Steps to reproduce
Run botsing against LANG-9b with target frame 8.
The text was updated successfully, but these errors were encountered: