-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 1.2.0
-
Component/s: client-libs
-
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.