diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-04 17:49:30 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-05 11:06:23 +0200 |
commit | a27bd84bf827fc3f7efe6afb6329d98a20a00389 (patch) | |
tree | 28702b37deef96f4e2464cc6c8976c4787bca20c /source3/smbd | |
parent | 300667e4a9f02104fc8759dd846ea41f400441bf (diff) | |
download | samba-a27bd84bf827fc3f7efe6afb6329d98a20a00389.tar.gz samba-a27bd84bf827fc3f7efe6afb6329d98a20a00389.tar.bz2 samba-a27bd84bf827fc3f7efe6afb6329d98a20a00389.zip |
s3:Fix a bogus uninitialized variable warning
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/smb2_getinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/smb2_getinfo.c b/source3/smbd/smb2_getinfo.c index 547d9dba16..09234cd129 100644 --- a/source3/smbd/smb2_getinfo.c +++ b/source3/smbd/smb2_getinfo.c @@ -130,7 +130,7 @@ static void smbd_smb2_request_getinfo_done(struct tevent_req *subreq) uint16_t out_output_buffer_offset; DATA_BLOB out_output_buffer = data_blob_null; NTSTATUS status; - NTSTATUS call_status; + NTSTATUS call_status = NT_STATUS_OK; NTSTATUS error; /* transport error */ status = smbd_smb2_getinfo_recv(subreq, |