[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Wed Jan 18 16:20:03 UTC 2017


The branch, master has been updated
       via  ca5d36d s3/winbindd: fix invalid free
      from  49fb663 ctdb-daemon: Remove stale eventd socket

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit ca5d36d8425d7b173b977ff4fd02d057a7e23d44
Author: Aurelien Aptel <aaptel at suse.com>
Date:   Tue Jan 17 14:39:03 2017 +0100

    s3/winbindd: fix invalid free
    
    coverity fix.
    
    TALLOC_FREE() might be called on uninitialized 'rids' at the end of the
    function in case of an early error. Initialize it to NULL to turn the
    TALLOC_FREE() to a noop in this case.
    
    Signed-off-by: Aurelien Aptel <aaptel at suse.com>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    Reviewed-by: David Disseldorp <ddiss at samba.org>
    
    Autobuild-User(master): Volker Lendecke <vl at samba.org>
    Autobuild-Date(master): Wed Jan 18 17:19:39 CET 2017 on sn-devel-144

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

Summary of changes:
 source3/winbindd/winbindd_msrpc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/source3/winbindd/winbindd_msrpc.c b/source3/winbindd/winbindd_msrpc.c
index 0d0e4ca..5ace4d1 100644
--- a/source3/winbindd/winbindd_msrpc.c
+++ b/source3/winbindd/winbindd_msrpc.c
@@ -53,7 +53,7 @@ static NTSTATUS msrpc_query_user_list(struct winbindd_domain *domain,
 {
 	struct rpc_pipe_client *samr_pipe = NULL;
 	struct policy_handle dom_pol;
-	uint32_t *rids;
+	uint32_t *rids = NULL;
 	TALLOC_CTX *tmp_ctx;
 	NTSTATUS status;
 


-- 
Samba Shared Repository



More information about the samba-cvs mailing list