The branch, v3-5-test has been updated
       via  f1b04a2 s3: Fix bug 7730 -- crash in winbindd_dsgetdcname.c
      from  02dd1fc Fix bug 7716 - acl_xattr and acl_tdb modules don't store 
unmodified copies of security descriptors.

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


- Log -----------------------------------------------------------------
commit f1b04a210074546d4e4347b62b4f7f5b879454d9
Author: Volker Lendecke <v...@samba.org>
Date:   Fri Oct 15 16:37:47 2010 +0200

    s3: Fix bug 7730 -- crash in winbindd_dsgetdcname.c

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

Summary of changes:
 source3/winbindd/wb_dsgetdcname.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/winbindd/wb_dsgetdcname.c 
b/source3/winbindd/wb_dsgetdcname.c
index 994d14e..1334eb9 100644
--- a/source3/winbindd/wb_dsgetdcname.c
+++ b/source3/winbindd/wb_dsgetdcname.c
@@ -97,6 +97,10 @@ static void wb_dsgetdcname_done(struct tevent_req *subreq)
                tevent_req_nterror(req, status);
                return;
        }
+       if (!NT_STATUS_IS_OK(result)) {
+               tevent_req_nterror(req, result);
+               return;
+       }
        tevent_req_done(req);
 }
 


-- 
Samba Shared Repository

Reply via email to