svn commit: samba r3194 - in branches/SAMBA_4_0/source/ntvfs/posix: .

tridge at samba.org tridge at samba.org
Mon Oct 25 05:28:18 GMT 2004


Author: tridge
Date: 2004-10-25 05:28:18 +0000 (Mon, 25 Oct 2004)
New Revision: 3194

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_4_0/source/ntvfs/posix&rev=3194&nolog=1

Log:
fixed an uninitialised variable 


Modified:
   branches/SAMBA_4_0/source/ntvfs/posix/pvfs_fsinfo.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/posix/pvfs_fsinfo.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/posix/pvfs_fsinfo.c	2004-10-25 05:27:49 UTC (rev 3193)
+++ branches/SAMBA_4_0/source/ntvfs/posix/pvfs_fsinfo.c	2004-10-25 05:28:18 UTC (rev 3194)
@@ -61,6 +61,7 @@
 	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;
 }



More information about the samba-cvs mailing list