1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00
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.
This commit is contained in:
Ulrich Drepper
2000-08-24 08:53:30 +00:00
parent 0e255b9c27
commit c81459e7d8
4 changed files with 35 additions and 2 deletions

View File

@@ -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);