From ce5fc22896a5475a33ee03ab6a1babf4159ebe57 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 2 Feb 2012 13:38:08 +0100 Subject: s4:torture:smb2: talloc_free the right tree structure in secondary_tcon() Pair-Programmed-With: Stefan Metzmacher --- source4/torture/smb2/notify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture/smb2') diff --git a/source4/torture/smb2/notify.c b/source4/torture/smb2/notify.c index b68ad55e96..070af0de9e 100644 --- a/source4/torture/smb2/notify.c +++ b/source4/torture/smb2/notify.c @@ -1814,7 +1814,7 @@ static struct smb2_tree *secondary_tcon(struct smb2_tree *tree, tcon.smb2.in.path = talloc_asprintf(tctx, "\\\\%s\\%s", host, share); status = smb2_tree_connect(tree, &(tcon.smb2)); if (!NT_STATUS_IS_OK(status)) { - talloc_free(tree); + talloc_free(tree1); torture_comment(tctx,"Failed to create secondary tree\n"); return NULL; } -- cgit