summaryrefslogtreecommitdiff
path: root/source3/smbd/smb2_notify.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-07-24 10:21:07 -0400
committerVolker Lendecke <vl@samba.org>2009-07-24 10:23:04 -0400
commit79fd60dd3872f136528821d1c755f55fa60b3450 (patch)
tree1575d1def69efafbd9adf06f5a55cdc514381828 /source3/smbd/smb2_notify.c
parent210181de7503966ea9fbfdbe2c030ab7b04b973c (diff)
downloadsamba-79fd60dd3872f136528821d1c755f55fa60b3450.tar.gz
samba-79fd60dd3872f136528821d1c755f55fa60b3450.tar.bz2
samba-79fd60dd3872f136528821d1c755f55fa60b3450.zip
Fix a few uninitialized variable warnings
I know those warnings are bogus, but both Coverity and gcc don't get it.
Diffstat (limited to 'source3/smbd/smb2_notify.c')
-rw-r--r--source3/smbd/smb2_notify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/smb2_notify.c b/source3/smbd/smb2_notify.c
index f6d83aeeed..4b9cbc495b 100644
--- a/source3/smbd/smb2_notify.c
+++ b/source3/smbd/smb2_notify.c
@@ -108,7 +108,7 @@ static void smbd_smb2_request_notify_done(struct tevent_req *subreq)
DATA_BLOB outbody;
DATA_BLOB outdyn;
uint16_t out_output_buffer_offset;
- DATA_BLOB out_output_buffer;
+ DATA_BLOB out_output_buffer = data_blob_null;
NTSTATUS status;
NTSTATUS error; /* transport error */