diff options
Diffstat (limited to 'source4/lib/samba3/group.c')
-rw-r--r-- | source4/lib/samba3/group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/samba3/group.c b/source4/lib/samba3/group.c index 0860c36e1f..fcf015de68 100644 --- a/source4/lib/samba3/group.c +++ b/source4/lib/samba3/group.c @@ -72,7 +72,7 @@ NTSTATUS samba3_read_grouptdb(const char *file, TALLOC_CTX *ctx, struct samba3_g for (kbuf = tdb_firstkey(tdb); kbuf.dptr; - newkey = tdb_nextkey(tdb, kbuf), safe_free(kbuf.dptr), kbuf=newkey) { + newkey = tdb_nextkey(tdb, kbuf), free(kbuf.dptr), kbuf=newkey) { struct samba3_groupmapping map; const char *k = (const char *)kbuf.dptr; |