krb5 commit: Use internal release function in oid_ops.c

Greg Hudson ghudson at MIT.EDU
Wed Jul 18 11:40:05 EDT 2012


https://github.com/krb5/krb5/commit/6892e2453fa1865f17f7372519c74ce7ad5f9503
commit 6892e2453fa1865f17f7372519c74ce7ad5f9503
Author: Simo Sorce <simo at redhat.com>
Date:   Fri May 11 19:31:23 2012 -0400

    Use internal release function in oid_ops.c
    
    In the end the internal one is called in all cases, but it seem
    cleaner to use the internal one instead of relying on the redirection.

 src/lib/gssapi/generic/oid_ops.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/lib/gssapi/generic/oid_ops.c b/src/lib/gssapi/generic/oid_ops.c
index 535fe57..1159efe 100644
--- a/src/lib/gssapi/generic/oid_ops.c
+++ b/src/lib/gssapi/generic/oid_ops.c
@@ -542,7 +542,7 @@ generic_gss_copy_oid_set(OM_uint32 *minor_status,
     *new_oidset = copy;
 done:
     if (major != GSS_S_COMPLETE) {
-        (void) gss_release_oid_set(&minor, &copy);
+        (void) generic_gss_release_oid_set(&minor, &copy);
     }
 
     return (major);


More information about the cvs-krb5 mailing list