From: Rusty Russell Date: Tue, 23 Aug 2011 02:51:10 +0000 (+0930) Subject: talloc_link: close memory leak in test. X-Git-Url: https://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=8a93e82d28ad04074451b36a97d500b5f0841552 talloc_link: close memory leak in test. --- diff --git a/ccan/talloc_link/test/run.c b/ccan/talloc_link/test/run.c index 3cbb5f01..d36bd6ad 100644 --- a/ccan/talloc_link/test/run.c +++ b/ccan/talloc_link/test/run.c @@ -112,5 +112,7 @@ int main(int argc, char *argv[]) /* No leaks? */ ok1(talloc_total_size(NULL) == 0); + talloc_disable_null_tracking(); + return exit_status(); }