diff options
author | Simo Sorce <simo@redhat.com> | 2015-03-05 12:05:45 -0500 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2015-03-05 12:05:45 -0500 |
commit | 2411072a27749c5038c07d6863e5a5dfd95f8aee (patch) | |
tree | bdd57242284d65abb737c3b23268b2150cefd72d /src | |
parent | 893ce347f17993687b30757ce6edd1b1c4351f49 (diff) | |
download | mod_auth_gssapi-2411072a27749c5038c07d6863e5a5dfd95f8aee.tar.gz mod_auth_gssapi-2411072a27749c5038c07d6863e5a5dfd95f8aee.tar.xz mod_auth_gssapi-2411072a27749c5038c07d6863e5a5dfd95f8aee.zip |
Do not leak acquired_cred
Diffstat (limited to 'src')
-rw-r--r-- | src/mod_auth_gssapi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mod_auth_gssapi.c b/src/mod_auth_gssapi.c index 52f2531..e65be4f 100644 --- a/src/mod_auth_gssapi.c +++ b/src/mod_auth_gssapi.c @@ -362,6 +362,7 @@ done: "WWW-Authenticate", "Negotiate"); } } + gss_release_cred(&min, &acquired_cred); gss_release_cred(&min, &delegated_cred); gss_release_buffer(&min, &output); gss_release_name(&min, &client); |