From eda1a267e1a70506107100a853884c49978acc01 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Sat, 12 Jul 2008 21:13:44 -0400 Subject: Add back mem leak fixes (This used to be commit 2adea093c5709e128bdde1e37c6a897db7cbc3b1) --- source3/winbindd/idmap.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/winbindd/idmap.c') diff --git a/source3/winbindd/idmap.c b/source3/winbindd/idmap.c index b793c47969..1f28c50930 100644 --- a/source3/winbindd/idmap.c +++ b/source3/winbindd/idmap.c @@ -149,11 +149,13 @@ NTSTATUS smb_register_idmap(int version, const char *name, entry = talloc(idmap_ctx, struct idmap_backend); if ( ! entry) { DEBUG(0,("Out of memory!\n")); + TALLOC_FREE(entry); return NT_STATUS_NO_MEMORY; } entry->name = talloc_strdup(idmap_ctx, name); if ( ! entry->name) { DEBUG(0,("Out of memory!\n")); + TALLOC_FREE(entry); return NT_STATUS_NO_MEMORY; } entry->methods = methods; -- cgit