diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-10-25 05:28:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:04:39 -0500 |
commit | a555d2eadc0894d53140f0917faf7fc0c76beb7b (patch) | |
tree | 7b98ee914ee9182bc508f4ee17a898e0ec6eff47 /source4 | |
parent | 1be85de5884d107f89eaf4221f225c9ec468365e (diff) | |
download | samba-a555d2eadc0894d53140f0917faf7fc0c76beb7b.tar.gz samba-a555d2eadc0894d53140f0917faf7fc0c76beb7b.tar.bz2 samba-a555d2eadc0894d53140f0917faf7fc0c76beb7b.zip |
r3194: fixed an uninitialised variable
(This used to be commit 8123cfc59edb7b455c7f6511480f0faeb4c9aba8)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/ntvfs/posix/pvfs_fsinfo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/ntvfs/posix/pvfs_fsinfo.c b/source4/ntvfs/posix/pvfs_fsinfo.c index a9153b4c19..e1cb2f710d 100644 --- a/source4/ntvfs/posix/pvfs_fsinfo.c +++ b/source4/ntvfs/posix/pvfs_fsinfo.c @@ -61,6 +61,7 @@ NTSTATUS pvfs_fsinfo(struct ntvfs_module_context *ntvfs, fs->generic.out.quota_flags = 0; fs->generic.out.volume_name = talloc_strdup(req, pvfs->share_name); fs->generic.out.fs_type = req->tcon->fs_type; + ZERO_STRUCT(fs->generic.out.guid); return NT_STATUS_OK; } |