diff options
Diffstat (limited to 'source3/lib/username.c')
-rw-r--r-- | source3/lib/username.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/username.c b/source3/lib/username.c index 9164fd3936..2af477577e 100644 --- a/source3/lib/username.c +++ b/source3/lib/username.c @@ -320,13 +320,13 @@ failed with error %s\n", strerror(errno) )); } *winbind_answered = True; - safe_free(groups); + SAFE_FREE(groups); return ret; err: *winbind_answered = False; - safe_free(groups); + SAFE_FREE(groups); return False; } |