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 | 4899c6b8069885df517de00b9608adb70c4a58be (patch) | |
tree | 15ad0e6e7ee1f98a5ea9e0f2fa364076057b39c0 /source3/libads | |
parent | 98c300ab90cc7775818c333931f1f923f9eb7763 (diff) | |
download | samba-4899c6b8069885df517de00b9608adb70c4a58be.tar.gz samba-4899c6b8069885df517de00b9608adb70c4a58be.tar.bz2 samba-4899c6b8069885df517de00b9608adb70c4a58be.zip |
r22079: Tsk, tsk, Metze didn't compile before check-in :-).
Merge the memory leak fix (with fix :-) to 3.0.25.
Jeremy.
(This used to be commit ab3150fe4ed2a629eb371db5f43ae09b9c583a64)
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/sasl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/sasl.c b/source3/libads/sasl.c index ce000a1306..0067a19d3b 100644 --- a/source3/libads/sasl.c +++ b/source3/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); |