free error message when freeing context
authorKevin Coffman <kwc@citi.umich.edu>
Tue, 21 Nov 2006 14:37:11 +0000 (14:37 +0000)
committerKevin Coffman <kwc@citi.umich.edu>
Tue, 21 Nov 2006 14:37:11 +0000 (14:37 +0000)
Call krb5_clear_error_message() to free any allocated error message
before freeing the context.

The condition that triggered this was a plugin library which fails to
load because of unresolved references.  It appears dlopen() on Linux
leaks four bytes for each failing library in this situation.

ticket: new
Target_Version: 1.6
Tags: pullup

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18858 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/krb/init_ctx.c

index 5ce00169a3488bd49c67893c217e0b20207e006c..ad924b73ba53ee8f91750c036a4eec86f933500d 100644 (file)
@@ -272,6 +272,8 @@ krb5_free_context(krb5_context ctx)
          ctx->ser_ctx = 0;
      }
 
+     krb5_clear_error_message(ctx);
+
      ctx->magic = 0;
      free(ctx);
 }