* alt_prof.c (krb5_free_realm_params): Free realm_acl_file portion
authorEzra Peisach <epeisach@mit.edu>
Thu, 5 Mar 1998 14:16:58 +0000 (14:16 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 5 Mar 1998 14:16:58 +0000 (14:16 +0000)
of structure.

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

src/lib/kadm5/ChangeLog
src/lib/kadm5/alt_prof.c

index 301bfbfab6f330f28ee8e10a5de86cf6b9ae566e..6279b607656cb4a138de5c01a24e9783500fa618 100644 (file)
@@ -7,6 +7,11 @@ Fri Feb 27 22:30:41 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
        * Makefile.in: Add a LOCAL_SUBDIRS macro for all subdirectories in
                the kadm5 library.
 
+Wed Feb 25 15:00:10 1998  Ezra Peisach  <epeisach@mit.edu>
+
+       * alt_prof.c (krb5_free_realm_params): Free realm_acl_file portion
+       of structure. 
+
 Wed Feb 18 16:13:56 1998  Tom Yu  <tlyu@mit.edu>
 
        * Makefile.in: Remove trailing slash from thisconfigdir.  Fix up
index a9094d9b052df41fd0962934f73c207a2691dd83..b2260d67a88f3e7bcba8d869d6d6baf80b079d8e 100644 (file)
@@ -912,6 +912,8 @@ krb5_free_realm_params(kcontext, rparams)
            krb5_xfree(rparams->realm_keysalts);
        if (rparams->realm_kdc_ports)
            krb5_xfree(rparams->realm_kdc_ports);
+       if (rparams->realm_acl_file)
+           krb5_xfree(rparams->realm_acl_file);
        krb5_xfree(rparams);
     }
     return(0);