From bbf37faa0f764fde2a2ad2a49281f0c2cd6378dd Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Mon, 2 Feb 2009 21:13:42 +0000 Subject: Get rid of casts of free() argument to char*, except where it's casting away const (so as to make this change warning-neutral), and in unicode source (which we may want to keep in sync with another source), and krb5_xfree macro (to be handled separately). git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21870 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/ss/invocation.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/util/ss') diff --git a/src/util/ss/invocation.c b/src/util/ss/invocation.c index 8d4a193bc..f4efe0288 100644 --- a/src/util/ss/invocation.c +++ b/src/util/ss/invocation.c @@ -125,6 +125,6 @@ ss_delete_invocation(sci_idx) free(t->rqt_tables); while(t->info_dirs[0] != (char *)NULL) ss_delete_info_dir(sci_idx, t->info_dirs[0], &ignored_code); - free((char *)t->info_dirs); - free((char *)t); + free(t->info_dirs); + free(t); } -- cgit