fix memory leak

This commit is contained in:
Robin Gareus 2014-11-13 20:45:39 +01:00
parent cb38034334
commit fbf7fe1b01
1 changed files with 1 additions and 0 deletions

View File

@ -169,6 +169,7 @@ int system_user_in_group(const char *name) {
gid = get_group_by_name(name);
if (0==gid) {
fprintf(stderr, "No %s group found\n", name);
free(list);
return 0;
}