Plug econf memory leaks
You can see the memory leaks with address sanitizer if shadow is compiled with `--enable-vendordir=/usr/etc`. How to reproduce: 1. Prepare a custom shell file as root ``` mkdir -p /etc/shells.d echo /bin/myshell > /etc/shells.d/custom ``` 2. Run chsh as regular user ``` chsh ``` Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
This commit is contained in:
parent
7321ceaf69
commit
8175b1532e
@ -522,6 +522,8 @@ static void def_load (void)
|
||||
* syslog. The tools will just use their default values.
|
||||
*/
|
||||
(void)putdef_str (keys[i], value);
|
||||
|
||||
free(value);
|
||||
}
|
||||
|
||||
econf_free (keys);
|
||||
|
@ -180,6 +180,7 @@ static bool shell_is_listed (const char *sh)
|
||||
break;
|
||||
}
|
||||
}
|
||||
econf_free (keys);
|
||||
econf_free (key_file);
|
||||
|
||||
return found;
|
||||
|
Loading…
Reference in New Issue
Block a user