GUAC-586: Fix potential NullPointerExceptions in basic and LDAP auth.

This commit is contained in:
Michael Jumper
2015-09-03 15:55:23 -07:00
parent df34b87460
commit c82f2312b8
2 changed files with 7 additions and 1 deletions

View File

@@ -206,7 +206,7 @@ public class BasicFileAuthenticationProvider extends SimpleAuthenticationProvide
return null;
// Validate and return info for given user and pass
Authorization auth = getUserMapping().getAuthorization(credentials.getUsername());
Authorization auth = userMapping.getAuthorization(credentials.getUsername());
if (auth != null && auth.validate(credentials.getUsername(), credentials.getPassword()))
return auth.getConfigurations();