From: Greg Hudson Date: Thu, 21 Feb 2013 17:36:07 +0000 (-0500) Subject: Fix fd leak in DIR ccache cursor function X-Git-Tag: krb5-1.12-alpha1~284 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c29d5f61af301aa8993b01ed0e3eb4f529d6862c;p=thirdparty%2Fkrb5.git Fix fd leak in DIR ccache cursor function If dcc_ptcursor_next reached the end of a directory, it called free() on the directory handle instead of closedir(), causing the directory fd to be leaked. Call closedir() instead. ticket: 7573 target_version: 1.11.1 tags: pullup --- diff --git a/src/lib/krb5/ccache/cc_dir.c b/src/lib/krb5/ccache/cc_dir.c index 1c97485aca..cee21aca42 100644 --- a/src/lib/krb5/ccache/cc_dir.c +++ b/src/lib/krb5/ccache/cc_dir.c @@ -635,7 +635,7 @@ dcc_ptcursor_next(krb5_context context, krb5_cc_ptcursor cursor, } /* We exhausted the directory without finding a cache to yield. */ - free(data->dir); + closedir(data->dir); data->dir = NULL; return 0; }