* test_profile.c (main): Call profile_release() before exiting
authorEzra Peisach <epeisach@mit.edu>
Wed, 5 Dec 2001 11:58:54 +0000 (11:58 +0000)
committerEzra Peisach <epeisach@mit.edu>
Wed, 5 Dec 2001 11:58:54 +0000 (11:58 +0000)
        in case of error return. (memory leak testing)

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

src/util/profile/ChangeLog
src/util/profile/test_profile.c

index 8108968f69d7656ca4394196eb0005c72154e0e2..50b71cbb02e9b21d1f27a9ad76158500353b2a1c 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-05  Ezra Peisach  <epeisach@mit.edu>
+
+       * test_profile.c (main): Call profile_release() before exiting
+       in case of error return. (memory leak testing)
+
 2001-10-09  Ken Raeburn  <raeburn@mit.edu>
 
        * prof_int.h, profile.hin, test_parse.c: Make prototypes
index 5ed881561d08aa6448d76deb2366d6eef29117a1..df4867d7410ba451121b690652ebb556eac18a21 100644 (file)
@@ -150,6 +150,7 @@ int main(argc, argv)
     }
     if (retval) {
            com_err(argv[0], retval, "while getting values");
+           profile_release(profile);
            exit(1);
     }
     if (print_value) {