Merge pull request #277 from whzhe51/br_whzhe
gpasswd.c: fix memory leak in sg_adm
This commit is contained in:
commit
46ad1856ac
@ -1204,6 +1204,17 @@ int main (int argc, char **argv)
|
|||||||
nscd_flush_cache ("group");
|
nscd_flush_cache ("group");
|
||||||
sssd_flush_cache (SSSD_DB_GROUP);
|
sssd_flush_cache (SSSD_DB_GROUP);
|
||||||
|
|
||||||
|
#ifdef SHADOWGRP
|
||||||
|
if (sgent.sg_adm) {
|
||||||
|
xfree(sgent.sg_adm);
|
||||||
|
}
|
||||||
|
if (sgent.sg_mem) {
|
||||||
|
xfree(sgent.sg_mem);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
if (grent.gr_mem) {
|
||||||
|
xfree(grent.gr_mem);
|
||||||
|
}
|
||||||
exit (E_SUCCESS);
|
exit (E_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user