From 48cb3aa5388ecca8b869d61310266f3fc75f6b7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 3 Apr 2009 03:59:54 +0000 Subject: [PATCH] plugs leaks git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@25021 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/fcache.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/krb5/fcache.c b/lib/krb5/fcache.c index d34f041cf..9b831c7f0 100644 --- a/lib/krb5/fcache.c +++ b/lib/krb5/fcache.c @@ -925,6 +925,9 @@ fcc_move(krb5_context context, krb5_ccache from, krb5_ccache to) fcc_unlock(context, fd); close(fd); } + + fcc_destroy(context, from); + return ret; }