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

Karolin Seeger kseeger at samba.org
Mon Oct 12 02:53:36 MDT 2009


The branch, v3-4-test has been updated
       via  a5e71f7... s3: Fix a memleak reported by dmarkey (cherry picked from commit 5aeb954ba9382e1975c64ac96f1e377ed6af3ae0)
      from  5629065... Fix bug 6796 - Deleting an event context on shutdown can cause smbd to crash.

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


- Log -----------------------------------------------------------------
commit a5e71f765927de5aa2a8e6a21cc297d274e8a1c2
Author: Volker Lendecke <vl at samba.org>
Date:   Fri Oct 9 22:58:14 2009 +0200

    s3: Fix a memleak reported by dmarkey
    (cherry picked from commit 5aeb954ba9382e1975c64ac96f1e377ed6af3ae0)
    
    Fix bug #6797.

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

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


Changeset truncated at 500 lines:

diff --git a/nsswitch/libwbclient/wbc_sid.c b/nsswitch/libwbclient/wbc_sid.c
index 46c59a9..657c6ae 100644
--- a/nsswitch/libwbclient/wbc_sid.c
+++ b/nsswitch/libwbclient/wbc_sid.c
@@ -247,9 +247,13 @@ wbcErr wbcLookupSid(const struct wbcDomainSid *sid,
 	if (WBC_ERROR_IS_OK(wbc_status)) {
 		if (pdomain != NULL) {
 			*pdomain = domain;
+		} else {
+			TALLOC_FREE(domain);
 		}
 		if (pname != NULL) {
 			*pname = name;
+		} else {
+			TALLOC_FREE(name);
 		}
 		if (pname_type != NULL) {
 			*pname_type = name_type;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list