1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-31 17:18:04 +03:00

r3194: fixed an uninitialised variable

(This used to be commit 8123cfc59e)
This commit is contained in:
Andrew Tridgell 2004-10-25 05:28:18 +00:00 committed by Gerald (Jerry) Carter
parent 1be85de588
commit a555d2eadc

View File

@ -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;
}