diff options
author | Jeremy Allison <jra@samba.org> | 2007-04-04 17:38:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:09 -0500 |
commit | ab3150fe4ed2a629eb371db5f43ae09b9c583a64 (patch) | |
tree | e1f2945873d54374c40495e075e6a0402addfdd7 | |
parent | 8c6930b7013b185af0530b04a7d5a49bc2ce7831 (diff) | |
download | samba-ab3150fe4ed2a629eb371db5f43ae09b9c583a64.tar.gz samba-ab3150fe4ed2a629eb371db5f43ae09b9c583a64.tar.xz samba-ab3150fe4ed2a629eb371db5f43ae09b9c583a64.zip |
r22079: Tsk, tsk, Metze didn't compile before check-in :-).
Merge the memory leak fix (with fix :-) to 3.0.25.
Jeremy.
-rw-r--r-- | source/libads/sasl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libads/sasl.c b/source/libads/sasl.c index ce000a13064..0067a19d3b6 100644 --- a/source/libads/sasl.c +++ b/source/libads/sasl.c @@ -477,7 +477,7 @@ failed: gss_release_name(&minor_status, &serv_name); if (context_handle != GSS_C_NO_CONTEXT) - gss_delete_sec_context(&min_status, &context_handle, GSS_C_NO_BUFFER); + gss_delete_sec_context(&minor_status, &context_handle, GSS_C_NO_BUFFER); krb5_free_principal(ctx, principal); krb5_free_context(ctx); |