diff options
| author | Ken Raeburn <raeburn@mit.edu> | 2009-02-02 21:13:42 +0000 |
|---|---|---|
| committer | Ken Raeburn <raeburn@mit.edu> | 2009-02-02 21:13:42 +0000 |
| commit | bbf37faa0f764fde2a2ad2a49281f0c2cd6378dd (patch) | |
| tree | 0665cc98c42d9c5bc0bb16976eaf12d1fedad08d /src/util/ss | |
| parent | 777f05d1b91d07ece4bd0e313e131b1a640cfad4 (diff) | |
| download | krb5-bbf37faa0f764fde2a2ad2a49281f0c2cd6378dd.tar.gz krb5-bbf37faa0f764fde2a2ad2a49281f0c2cd6378dd.tar.xz krb5-bbf37faa0f764fde2a2ad2a49281f0c2cd6378dd.zip | |
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
Diffstat (limited to 'src/util/ss')
| -rw-r--r-- | src/util/ss/invocation.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |
