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 <[email protected]>
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 <[email protected]>

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

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

Reply via email to