-
Bug
-
Resolution: Fixed
-
P4
-
1.2.0
-
kestrel
-
generic
-
generic
Lines 421-423 contain the following code:
String action = (String)formAttr.getAttribute(HTML.Attribute.ACTION);
// commonly occuring error
int index = action.indexOf('?');
If action is null, the call to indexOf throws a NullPointerException.
String action = (String)formAttr.getAttribute(HTML.Attribute.ACTION);
// commonly occuring error
int index = action.indexOf('?');
If action is null, the call to indexOf throws a NullPointerException.