about summary refs log tree commit diff
path: root/filters
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-07-14 05:10:28 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-07-14 05:10:28 +0200
commitc4d23d02ec5a26d09d389dcf7b8928ecd5798ccc (patch)
tree842e4126b7cc428e8ec31dab4a14b485c1cd78d9 /filters
parentauth-filter: do not write more than we've read (diff)
downloadcgit-pink-c4d23d02ec5a26d09d389dcf7b8928ecd5798ccc.tar.gz
cgit-pink-c4d23d02ec5a26d09d389dcf7b8928ecd5798ccc.zip
auth-filters: do not crash on nil username
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'filters')
-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 c1e382f..3b6564b 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
 
d=bd985953cf8c45a7d9a92ece8a986975c3ac496a&follow=1'>Use inline style rather than <b>, <i>, <u>June McEnroe 2019-07-11Factor out clearJune McEnroe 2019-07-11Add bright option to shottyJune McEnroe 2019-07-11Output <b>, <i>, <u> in shottyJune McEnroe 2019-07-10Ignore SM and RMJune McEnroe 2019-07-09Add shotty man page and build itJune McEnroe 2019-07-09Add up -cJune McEnroe 2019-07-09Add options for default colors to shottyJune McEnroe 2019-07-08Use char literals consistentlyJune McEnroe