From b50d10c2a313b45bbc195b13a353a20af0ab917a Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 17 Sep 2001 04:52:45 +0000 Subject: move to SAFE_FREE() (This used to be commit 03dc67788f68c9e01b5a82fdf43f837cb19f4608) --- source3/nsswitch/wb_client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/nsswitch/wb_client.c') diff --git a/source3/nsswitch/wb_client.c b/source3/nsswitch/wb_client.c index 12e4bb11db..bc76771f9d 100644 --- a/source3/nsswitch/wb_client.c +++ b/source3/nsswitch/wb_client.c @@ -347,7 +347,7 @@ int winbind_initgroups(char *user, gid_t gid) /* Free response data if necessary */ done: - safe_free(groups); + SAFE_FREE(groups); return result; } @@ -381,7 +381,7 @@ int winbind_getgroups(char *user, int size, gid_t *list) } done: - safe_free(groups); + SAFE_FREE(groups); return result; } -- cgit