commit 15cc6a0a0dfee48d9c101a5e4e589e3cb55ad343 from: Stefan Sperling date: Mon May 26 19:38:55 2025 UTC gotwebd: do not forget to initialize *ngroups argument for getgrouplist() spotted by Denis Bodor, thanks! commit - e2bc7eacc7fc0b0bb7659f08d380c3c7c4397890 commit + 15cc6a0a0dfee48d9c101a5e4e589e3cb55ad343 blob - f7580c6654c65f282a78fc8ed948053a60d21fd1 blob + b3a5e3687066935bb40b1fc0ced2997768dfa1ed --- gotwebd/gotwebd.c +++ gotwebd/gotwebd.c @@ -357,7 +357,7 @@ main(int argc, char **argv) struct event_base *evb; struct gotwebd *env; struct passwd *pw; - int ch, i, gotwebd_ngroups; + int ch, i, gotwebd_ngroups = NGROUPS_MAX; int no_action = 0; int proc_type = GOTWEBD_PROC_PARENT; const char *conffile = GOTWEBD_CONF;