r3194: fixed an uninitialised variable
authorAndrew Tridgell <tridge@samba.org>
Mon, 25 Oct 2004 05:28:18 +0000 (05:28 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:04:39 +0000 (13:04 -0500)
(This used to be commit 8123cfc59edb7b455c7f6511480f0faeb4c9aba8)

source4/ntvfs/posix/pvfs_fsinfo.c

index a9153b4c19772665a073fcb11cc25ba3995af34b..e1cb2f710dbfe8a4613867cac0ea5df2af59ca3c 100644 (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;
 }