the repository which powers this website
auth-filters: do not crash on nil username
Signed-off-by: Jason A. Donenfeld <[email protected]>
Jason A. Donenfeld 2018-07-14
parent 93a2c33 · commit c4d23d0
-rw-r--r--filters/gentoo-ldap-authentication.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/gentoo-ldap-authentication.lua b/filters/gentoo-ldap-authentication.lua
index c1e382fe..3b6564b4 100644
--- a/filters/gentoo-ldap-authentication.lua
+++ b/filters/gentoo-ldap-authentication.lua
@@ -106,7 +106,7 @@ local lualdap = require("lualdap")
function gentoo_ldap_user_groups(username, password)
-- Ensure the user is alphanumeric
- if username:match("%W") then
+ if username == nil or username:match("%W") then
return nil
end