diff options
author | Andreas Schneider <asn@samba.org> | 2014-10-30 16:12:17 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-10-31 03:47:40 +0100 |
commit | 56ee6a2074dd7700c64f41f97d202ee3851e1c1c (patch) | |
tree | 08a48c723440f9316b8e602b52a1a457fe7a9a66 | |
parent | 69d6d62a4ca6c727f0d22ce3e51b684ffa764c0d (diff) | |
download | samba-56ee6a2074dd7700c64f41f97d202ee3851e1c1c.tar.gz samba-56ee6a2074dd7700c64f41f97d202ee3851e1c1c.tar.xz samba-56ee6a2074dd7700c64f41f97d202ee3851e1c1c.zip |
s3-libsmb: Make sure the stat structure is initialized.
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r-- | source3/libsmb/clirap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clirap.c b/source3/libsmb/clirap.c index 64e3767c12..08f8ba2b6a 100644 --- a/source3/libsmb/clirap.c +++ b/source3/libsmb/clirap.c @@ -1424,7 +1424,7 @@ NTSTATUS cli_qpathinfo3(struct cli_state *cli, const char *fname, SMB_INO_T *ino) { NTSTATUS status = NT_STATUS_OK; - SMB_STRUCT_STAT st; + SMB_STRUCT_STAT st = { 0 }; uint32_t attr; uint64_t pos; |