about summary refs log tree commit diff
path: root/sunrpc/key_call.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2006-05-04 18:23:32 +0000
committerUlrich Drepper <drepper@redhat.com>2006-05-04 18:23:32 +0000
commit48be31142a07498609795d7c172a923919e4a477 (patch)
tree61069ac469711ba9275d365d8ca65a968e2943e1 /sunrpc/key_call.c
parentca4fce0e1ece616c6f34d549469d26d787141a89 (diff)
downloadglibc-48be31142a07498609795d7c172a923919e4a477.tar.gz
glibc-48be31142a07498609795d7c172a923919e4a477.tar.xz
glibc-48be31142a07498609795d7c172a923919e4a477.zip
* sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free
	client->cl_auth.
Diffstat (limited to 'sunrpc/key_call.c')
-rw-r--r--sunrpc/key_call.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index 77c0ce18b9..63293aefa5 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);
 	}
 }