1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

r21523: fix a valgrind warning, we write the struct content to the file and should not leave

t2.out uninialized

metze
This commit is contained in:
Stefan Metzmacher 2007-02-24 09:00:23 +00:00 committed by Gerald (Jerry) Carter
parent 2982d9e90c
commit 4723374d14

View File

@ -160,6 +160,7 @@ static bool qpathinfo_aliases(struct torture_context *tctx,
t2.in.setup = &setup;
t2.in.params = data_blob_talloc(tctx, NULL, 6);
t2.in.data = data_blob(NULL, 0);
ZERO_STRUCT(t2.out);
smbcli_unlink(cli->tree, fname);
fnum = create_complex_file(cli, cli, fname);