Memory leak in save_error_string_nocopy()
authorTom Yu <tlyu@mit.edu>
Tue, 28 Jun 2011 22:11:47 +0000 (22:11 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 28 Jun 2011 22:11:47 +0000 (22:11 +0000)
pull up r24693 from trunk

 ------------------------------------------------------------------------
 r24693 | tlyu | 2011-03-08 15:53:55 -0500 (Tue, 08 Mar 2011) | 8 lines

 ticket: 6844
 tags: pullup
 target_version: 1.9.1

 Fix a memory leak independently found by Tim Pozdeev and Arlene Berry.

 This change should be pulled up to the 1.8 and 1.7 branches as well.

ticket: 6925
version_fixed: 1.8.5

git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-8@24998 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);
 }
 
 /**/