diff options
author | Jeremy Allison <jra@samba.org> | 2010-04-27 17:09:40 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-04-27 17:09:40 -0700 |
commit | 4d1f0436bd4f63887173473541efa205fb98210f (patch) | |
tree | 20c45e06496d7c5ecc5ad39f613f5d909eb2091a /source3 | |
parent | 33256e41e1ed7a4a2caeef2f0cf26d0abb9032ca (diff) | |
download | samba-4d1f0436bd4f63887173473541efa205fb98210f.tar.gz samba-4d1f0436bd4f63887173473541efa205fb98210f.tar.bz2 samba-4d1f0436bd4f63887173473541efa205fb98210f.zip |
Don't return a potentially uninitialized NT_STATUS. We can now see user lists in Windows ACLs.
Jeremy.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/smb2_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/smb2_ioctl.c b/source3/smbd/smb2_ioctl.c index 7773da6291..c7775b4e4d 100644 --- a/source3/smbd/smb2_ioctl.c +++ b/source3/smbd/smb2_ioctl.c @@ -467,7 +467,7 @@ static NTSTATUS smbd_smb2_ioctl_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, DATA_BLOB *out_output) { - NTSTATUS status; + NTSTATUS status = NT_STATUS_OK; struct smbd_smb2_ioctl_state *state = tevent_req_data(req, struct smbd_smb2_ioctl_state); |