Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
There is a possible null pointer dereference in method doTransform of class BcelClassTransformer.
When this code:
javaClazz = parser.parse();
throws an exception or returns null this line:
log.debug("transforming class " + javaClazz.getClassName());
and/or later the
String[] intfs = javaClazz.getInterfaceNames();
will throw a NullPointerException.