diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-24 08:53:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-24 08:53:30 +0000 |
commit | c81459e7d88b97b5f9c3d08a04148e795bce326a (patch) | |
tree | 75e15e9a9b412904a6bcb42c52cadef84b0be10f /sunrpc | |
parent | 0e255b9c271d3e316e74f6f70b05fdac90284576 (diff) | |
download | glibc-c81459e7d88b97b5f9c3d08a04148e795bce326a.zip glibc-c81459e7d88b97b5f9c3d08a04148e795bce326a.tar.gz glibc-c81459e7d88b97b5f9c3d08a04148e795bce326a.tar.bz2 |
Update.
2000-08-24 Ulrich Drepper <drepper@redhat.com>
* resolv/res_hconf.c (free_mem): Remove not needed if.
* time/tzset.c (free_mem): New function.
* string/strsignal.c (free_mem): New function.
* inet/inet_ntoa.c (free_mem): New function.
* sunrpc/clnt_perr.c (free_mem): New function.
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/clnt_perr.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sunrpc/clnt_perr.c b/sunrpc/clnt_perr.c index ba95d07..6c33c32 100644 --- a/sunrpc/clnt_perr.c +++ b/sunrpc/clnt_perr.c @@ -383,3 +383,11 @@ auth_errmsg (enum auth_stat stat) } return NULL; } + + +static void __attribute__ ((unused)) +free_mem (void) +{ + free (buf); +} +text_set_element (__libc_subfreeres, free_mem); |