From 5135ebd6f099518f0a0b5796e8057210be824740 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 27 Jul 2009 14:47:41 +0200 Subject: Fix a valgrind error in chain_reply construct_reply() references the request after chain_reply has freed it. --- source3/include/smb.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/include') diff --git a/source3/include/smb.h b/source3/include/smb.h index 6ccdd968a3..11927443bd 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -655,6 +655,8 @@ struct smb_request { * state information for async smb handling */ void *async_priv; + + bool done; }; /* Defines for the sent_oplock_break field above. */ -- cgit