From b9bb50ff5b080ca3689496d5d34afa11e9dd71ac Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 2 Apr 2013 11:23:31 -0400 Subject: [PATCH] Use free() not efree() since we don't include alloc.h here --- compat/getgrouplist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat/getgrouplist.c b/compat/getgrouplist.c index 544f60e5f..a3eb87179 100644 --- a/compat/getgrouplist.c +++ b/compat/getgrouplist.c @@ -81,7 +81,7 @@ getgrouplist(const char *name, gid_t basegid, gid_t *groups, int *ngroupsp) rval = 0; done: - efree(grset); + free(grset); #ifdef HAVE_SETAUTHDB aix_restoreauthdb(); #endif