From: Ezra Peisach Date: Thu, 31 Dec 2009 23:18:16 +0000 (+0000) Subject: Free tinfo at end - so program runs with new memory leaks X-Git-Tag: krb5-1.8-alpha1~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebfd96a98ccb8f7df042cadbeefa00ee4761b9fa;p=thirdparty%2Fkrb5.git Free tinfo at end - so program runs with new memory leaks git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23559 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/tests/threads/init_ctx.c b/src/tests/threads/init_ctx.c index 208104deb9..162906019e 100644 --- a/src/tests/threads/init_ctx.c +++ b/src/tests/threads/init_ctx.c @@ -274,5 +274,6 @@ main (int argc, char *argv[]) 100 * total / wallclock / n_threads); printf ("Total CPU use per iteration per thread: %Lfms\n", 1000 * total / n_threads / iter_count); + free(tinfo); return 0; }