-
Bug
-
Resolution: Done
-
Major
-
None
Coverity static-analysis scan found a possilbe method call on null object in the PermissionMapperDefinitions.createPermission method.
Module currentModule = Module.getCallerModule(); if (permission.getModule() != null) { ModuleIdentifier mi = ModuleIdentifier.fromString(permission.getModule()); try { currentModule = currentModule.getModule(mi);
The currentModule value returned from Module.getCallerModule() may be null. The getModule() method is called on it without the null-check.
- clones
-
JBEAP-7931 Coverity: dereference null value in PermissionMapperDefinitions (Elytron subsystem)
- Closed