The branch, v4-1-test has been updated
       via  487c3b3 s3: winbindd: Fix TALLOC_FREE of uninitialized groups 
variable.
      from  711131e s3-util: Compare the maximum allowed length of a NetBIOS 
name

https://git.samba.org/?p=samba.git;a=shortlog;h=v4-1-test


- Log -----------------------------------------------------------------
commit 487c3b3435becb59848fadf25f268cba6e03ef1c
Author: Jeremy Allison <j...@samba.org>
Date:   Thu Jul 23 10:52:43 2015 -0700

    s3: winbindd: Fix TALLOC_FREE of uninitialized groups variable.
    
    Fix created by by: wei zhong <wwey...@gmail.com>
    
    Only for 4.2.x and below, master code already fixed.
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=10823
    
    Signed-off-by: Jeremy Allison <j...@samba.org>
    
    Autobuild-User(v4-1-test): Karolin Seeger <ksee...@samba.org>
    Autobuild-Date(v4-1-test): Mon Aug 31 23:35:54 CEST 2015 on sn-devel-104

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

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


Changeset truncated at 500 lines:

diff --git a/source3/winbindd/winbindd_dual_srv.c 
b/source3/winbindd/winbindd_dual_srv.c
index 911fd75..2df4af7 100644
--- a/source3/winbindd/winbindd_dual_srv.c
+++ b/source3/winbindd/winbindd_dual_srv.c
@@ -380,7 +380,7 @@ NTSTATUS _wbint_QueryGroupList(struct pipes_struct *p,
 {
        struct winbindd_domain *domain = wb_child_domain();
        uint32_t i, num_groups;
-       struct wb_acct_info *groups;
+       struct wb_acct_info *groups = NULL;
        struct wbint_Principal *result;
        NTSTATUS status;
 


-- 
Samba Shared Repository

Reply via email to