From: Volker Lendecke Date: Fri, 11 Jul 2008 15:46:09 +0000 (+0200) Subject: Revert "Fix two memory leaks in an error path in idmap.c" X-Git-Tag: samba-4.0.0alpha6~801^2~696 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=343c7ff3d2f2125a873692c635f1fddedaecf242;p=thirdparty%2Fsamba.git Revert "Fix two memory leaks in an error path in idmap.c" This reverts commit 7cec389e19323e99b6b6258e539be9d1fd65810f. (This used to be commit d0b34cbb4eba2b6543402af2c9f95407546cefad) --- diff --git a/source3/winbindd/idmap.c b/source3/winbindd/idmap.c index c0565964702..8b16f27f7da 100644 --- a/source3/winbindd/idmap.c +++ b/source3/winbindd/idmap.c @@ -154,7 +154,6 @@ NTSTATUS smb_register_idmap(int version, const char *name, 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; @@ -208,7 +207,6 @@ NTSTATUS smb_register_idmap_alloc(int version, const char *name, 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;