s4:torture:smb2: fix segfault on error condition in the durable-open.delete_on_close1...
authorMichael Adam <obnox@samba.org>
Wed, 13 Feb 2013 14:04:10 +0000 (15:04 +0100)
committerStefan Metzmacher <metze@samba.org>
Mon, 18 Feb 2013 14:55:52 +0000 (15:55 +0100)
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
source4/torture/smb2/durable_open.c

index df67d77e57c66e43527505361a269b57a6e891e1..89a6be854bb5f0218652c80bbf62352df5e69b6c 100644 (file)
@@ -787,13 +787,15 @@ static bool test_durable_open_delete_on_close1(struct torture_context *tctx,
        CHECK_VAL(io2.out.oplock_level, smb2_util_oplock_level("b"));
 
 done:
-       if (h != NULL) {
-               smb2_util_close(tree, *h);
-       }
+       if (tree != NULL) {
+               if (h != NULL) {
+                       smb2_util_close(tree, *h);
+               }
 
-       smb2_util_unlink(tree, fname);
+               smb2_util_unlink(tree, fname);
 
-       talloc_free(tree);
+               talloc_free(tree);
+       }
 
        talloc_free(mem_ctx);