Fix a memory leak independently found by Tim Pozdeev and Arlene Berry
authorTom Yu <tlyu@mit.edu>
Tue, 8 Mar 2011 20:53:55 +0000 (20:53 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 8 Mar 2011 20:53:55 +0000 (20:53 +0000)
This change should be pulled up to the 1.8 and 1.7 branches as well.

ticket: 6844
tags: pullup
target_version: 1.9.1

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

src/lib/gssapi/krb5/disp_status.c

index 6b164c249d094e4a56a9d2ae40f760b826fa44a8..f04872d8fbd2b9d9a9eb2d9187461a5911d0e94e 100644 (file)
@@ -148,6 +148,7 @@ void krb5_gss_save_error_info(OM_uint32 minor_code, krb5_context ctx)
 void krb5_gss_delete_error_info(void *p)
 {
     gsserrmap_destroy(p);
+    free(p);
 }
 
 /**/