You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
krb5-go tries to avoid making too many objects backed by C, but a handful are (Context and CCache). Those should use runtime.SetFinalizer to clean themselves up and runtime.SetFinalizer(blah, nil) if closed explicitly. (This appears to be what the standard library os.File does internally.)
The text was updated successfully, but these errors were encountered:
krb5-go tries to avoid making too many objects backed by C, but a handful are (
Context
andCCache
). Those should useruntime.SetFinalizer
to clean themselves up andruntime.SetFinalizer(blah, nil)
if closed explicitly. (This appears to be what the standard libraryos.File
does internally.)The text was updated successfully, but these errors were encountered: