diff options
author | Michael Adam <obnox@samba.org> | 2013-02-13 15:03:00 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2013-02-18 15:55:41 +0100 |
commit | 98b0e909b7b65bee694743617476d4d36fe595a3 (patch) | |
tree | 4c2eb285602c33973d795cc6a2cbaa09bd20b270 | |
parent | 10fcbc6869dc2803e1c2dd3183c6781f4233550d (diff) | |
download | samba-98b0e909b7b65bee694743617476d4d36fe595a3.tar.gz samba-98b0e909b7b65bee694743617476d4d36fe595a3.tar.bz2 samba-98b0e909b7b65bee694743617476d4d36fe595a3.zip |
s4:torture:smb2: fix segfault on error condition in the durable-open.reopen4 test
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
-rw-r--r-- | source4/torture/smb2/durable_open.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/source4/torture/smb2/durable_open.c b/source4/torture/smb2/durable_open.c index 8a1e5c7e27..df67d77e57 100644 --- a/source4/torture/smb2/durable_open.c +++ b/source4/torture/smb2/durable_open.c @@ -707,13 +707,15 @@ static bool test_durable_open_reopen4(struct torture_context *tctx, CHECK_VAL(io2.out.oplock_level, smb2_util_oplock_level("b")); done: - if (h != NULL) { - smb2_util_close(tree2, *h); - } + if (tree != NULL) { + if (h != NULL) { + smb2_util_close(tree2, *h); + } - smb2_util_unlink(tree2, fname); + smb2_util_unlink(tree2, fname); - talloc_free(tree); + talloc_free(tree); + } talloc_free(mem_ctx); |