summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
Diffstat (limited to 'source3')
-rw-r--r--source3/torture/vfstest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/torture/vfstest.c b/source3/torture/vfstest.c
index 082d3d4df7..ddc5e533a2 100644
--- a/source3/torture/vfstest.c
+++ b/source3/torture/vfstest.c
@@ -419,7 +419,7 @@ int main(int argc, char *argv[])
{
char *cmdstr = NULL;
struct cmd_set **cmd_set;
- struct vfs_state vfs;
+ struct vfs_state vfs = { 0, };
int i;
char *filename = NULL;
TALLOC_CTX *frame = talloc_stackframe();
@@ -469,7 +469,7 @@ int main(int argc, char *argv[])
/* some basic initialization stuff */
sec_init();
vfs.conn = talloc_zero(NULL, connection_struct);
- vfs.conn->params = talloc(vfs.conn, struct share_params);
+ vfs.conn->params = talloc_zero(vfs.conn, struct share_params);
for (i=0; i < 1024; i++)
vfs.files[i] = NULL;