[SCM] Samba Shared Repository - branch v3-3-test updated

Karolin Seeger kseeger at samba.org
Mon Oct 12 03:29:18 MDT 2009


The branch, v3-3-test has been updated
       via  95389ec... s3:wbc_sid: Fix build.
      from  68c77a5... s3: Fix a memleak reported by dmarkey (cherry picked from commit 5aeb954ba9382e1975c64ac96f1e377ed6af3ae0)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-test


- Log -----------------------------------------------------------------
commit 95389ecdeb2e1d9d9512210a92c05c7a2d753409
Author: Karolin Seeger <kseeger at samba.org>
Date:   Mon Oct 12 11:24:30 2009 +0200

    s3:wbc_sid: Fix build.
    
    Use talloc_free instead of TALLOC_FREE.
    
    Signed-off-by: Volker Lendecke <vl at samba.org>

-----------------------------------------------------------------------

Summary of changes:
 source/nsswitch/libwbclient/wbc_sid.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/nsswitch/libwbclient/wbc_sid.c b/source/nsswitch/libwbclient/wbc_sid.c
index d86e159..856b8b4 100644
--- a/source/nsswitch/libwbclient/wbc_sid.c
+++ b/source/nsswitch/libwbclient/wbc_sid.c
@@ -282,12 +282,12 @@ wbcErr wbcLookupSid(const struct wbcDomainSid *sid,
 		if (pdomain != NULL) {
 			*pdomain = domain;
 		} else {
-			TALLOC_FREE(domain);
+			talloc_free(domain);
 		}
 		if (pname != NULL) {
 			*pname = name;
 		} else {
-			TALLOC_FREE(name);
+			talloc_free(name);
 		}
 		if (pname_type != NULL) {
 			*pname_type = name_type;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list