From: Simo Sorce Date: Fri, 11 May 2012 23:31:23 +0000 (-0400) Subject: Use internal release function in oid_ops.c X-Git-Tag: krb5-1.11-alpha1~394 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6892e2453fa1865f17f7372519c74ce7ad5f9503;p=thirdparty%2Fkrb5.git 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. --- diff --git a/src/lib/gssapi/generic/oid_ops.c b/src/lib/gssapi/generic/oid_ops.c index 535fe57d8f..1159efeb72 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, ©); + (void) generic_gss_release_oid_set(&minor, ©); } return (major);