[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Wed Oct 14 08:22:03 UTC 2015


The branch, master has been updated
       via  880b79a s3:lib/messages: fix error check in messaging_filtered_read_send()
      from  74013ae ctdb: Fix CID 1327223 Unbounded source buffer

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


- Log -----------------------------------------------------------------
commit 880b79addc80486e857174b13e63bc98b13f208c
Author: Ralph Boehme <slow at samba.org>
Date:   Tue Oct 13 19:08:00 2015 +0200

    s3:lib/messages: fix error check in messaging_filtered_read_send()
    
    Signed-off-by: Ralph Boehme <slow at samba.org>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    
    Autobuild-User(master): Volker Lendecke <vl at samba.org>
    Autobuild-Date(master): Wed Oct 14 10:21:09 CEST 2015 on sn-devel-104

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

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


Changeset truncated at 500 lines:

diff --git a/source3/lib/messages.c b/source3/lib/messages.c
index 03e6097..d059f23 100644
--- a/source3/lib/messages.c
+++ b/source3/lib/messages.c
@@ -642,7 +642,7 @@ struct tevent_req *messaging_filtered_read_send(
 
 	state->tevent_handle = messaging_dgm_register_tevent_context(
 		state, ev);
-	if (tevent_req_nomem(state, req)) {
+	if (tevent_req_nomem(state->tevent_handle, req)) {
 		return tevent_req_post(req, ev);
 	}
 


-- 
Samba Shared Repository



More information about the samba-cvs mailing list