[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-675-gc1b60cd

Michael Adam obnox at samba.org
Mon Apr 7 14:49:15 GMT 2008


The branch, v3-2-test has been updated
       via  c1b60cdecff2a53f0a75a432a1ad7730eb734908 (commit)
      from  8671f9767d7d93a86712741303d6046937c3aae8 (commit)

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


- Log -----------------------------------------------------------------
commit c1b60cdecff2a53f0a75a432a1ad7730eb734908
Author: Michael Adam <obnox at samba.org>
Date:   Mon Apr 7 16:38:14 2008 +0200

    winbindd: fix break out early condition in fill_grent_mem().
    
    if (!&new_glist) would always be skipped, if (new_glist == NULL) is
    what must have been meant...
    
    Michael

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

Summary of changes:
 source/winbindd/winbindd_group.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/winbindd/winbindd_group.c b/source/winbindd/winbindd_group.c
index 5dbd8c5..d5d3acc 100644
--- a/source/winbindd/winbindd_group.c
+++ b/source/winbindd/winbindd_group.c
@@ -567,7 +567,7 @@ static bool fill_grent_mem(struct winbindd_domain *domain,
 		/* If we have no more groups to expand, break out
 		   early */
 
-		if ( !&new_glist )
+		if (new_glist == NULL)
 			break;
 
 		/* One more round */


-- 
Samba Shared Repository


More information about the samba-cvs mailing list