summaryrefslogtreecommitdiff
path: root/lib/talloc
diff options
context:
space:
mode:
authorSwen Schillig <swen@linux.ibm.com>2019-08-15 14:33:32 +0200
committerAndrew Bartlett <abartlet@samba.org>2019-08-21 07:20:39 +0000
commit878e804df6377ffa120ae62b9abb182c957c10a6 (patch)
tree520ff190297a4a37ece491d87dbe708b2ce8851f /lib/talloc
parent616646a0c4c5709ab334a11907642e710f912697 (diff)
downloadsamba-878e804df6377ffa120ae62b9abb182c957c10a6.tar.gz
talloc: ASAN fix for test_talloc_free_in_destructor
Indirect leak of 104 byte(s) in 1 object(s) allocated from: #0 0x7f06393dfc08 in __interceptor_malloc (/lib64/libasan.so.5+0xefc08) #1 0x7f06392d0c45 in __talloc_with_prefix ../../talloc.c:782 #2 0x7f06392d0c45 in __talloc ../../talloc.c:824 #3 0x7f06392d0c45 in _talloc_named_const ../../talloc.c:981 #4 0x7f06392d0c45 in talloc_named_const ../../talloc.c:1748 #5 0x409edd in test_talloc_free_in_destructor ../../testsuite.c:1256 #6 0x409edd in torture_local_talloc ../../testsuite.c:2138 #7 0x402603 in main ../../testsuite_main.c:32 #8 0x7f063908a412 in __libc_start_main (/lib64/libc.so.6+0x24412) Signed-off-by: Swen Schillig <swen@linux.ibm.com> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Matthias Dieter Wallnöfer <mdw@samba.org>
Diffstat (limited to 'lib/talloc')
-rw-r--r--lib/talloc/testsuite.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/talloc/testsuite.c b/lib/talloc/testsuite.c
index 9e340827e88..c119884fd55 100644
--- a/lib/talloc/testsuite.c
+++ b/lib/talloc/testsuite.c
@@ -1266,6 +1266,8 @@ static bool test_talloc_free_in_destructor(void)
talloc_free(level0);
+ talloc_free(level3); /* make ASAN happy */
+
printf("success: free_in_destructor\n");
return true;
}