From: Ulrich Drepper Date: Thu, 4 May 2006 18:23:32 +0000 (+0000) Subject: * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free X-Git-Tag: upstream/2.30~15545 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=48be31142a07498609795d7c172a923919e4a477;p=external%2Fglibc.git * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free client->cl_auth. --- diff --git a/ChangeLog b/ChangeLog index 24546f5..621de2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-05-04 Ulrich Drepper + * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free + client->cl_auth. + * sunrpc/rpc_thread.c (__rpc_thread_destroy): Don't skip entire cleanup for initial thread, just the free call on TVP. diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c index 77c0ce1..63293ae 100644 --- a/sunrpc/key_call.c +++ b/sunrpc/key_call.c @@ -552,8 +552,11 @@ __rpc_thread_key_cleanup (void) struct key_call_private *kcp = RPC_THREAD_VARIABLE(key_call_private_s); if (kcp) { - if (kcp->client) + if (kcp->client) { + if (kcp->client->cl_auth) + auth_destroy (kcp->client->cl_auth); clnt_destroy(kcp->client); + } free (kcp); } }