diff options
author | Volker Lendecke <vl@samba.org> | 2009-07-24 10:21:07 -0400 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-07-24 10:23:04 -0400 |
commit | 79fd60dd3872f136528821d1c755f55fa60b3450 (patch) | |
tree | 1575d1def69efafbd9adf06f5a55cdc514381828 /source3/smbd/smb2_notify.c | |
parent | 210181de7503966ea9fbfdbe2c030ab7b04b973c (diff) | |
download | samba-79fd60dd3872f136528821d1c755f55fa60b3450.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/smb2_notify.c b/source3/smbd/smb2_notify.c index f6d83aeeed9..4b9cbc495b5 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 */ |