Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
	* sysdeps/generic/setenv.c (free_mem): New function.  Free all
	allocated memory.
  • Loading branch information
Ulrich Drepper committed Aug 31, 2000
1 parent 736dda8 commit 69071b2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
2000-08-31 Ulrich Drepper <drepper@redhat.com>

* sysdeps/generic/setenv.c (free_mem): New function. Free all
allocated memory.

* intl/locale.alias: Add aliases for bomal and nynorsk.

* locale/iso-639.def: Fix 639-1 code for Bokmal.
Expand Down
15 changes: 14 additions & 1 deletion sysdeps/generic/setenv.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 1992, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
/* Copyright (C) 1992, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand Down Expand Up @@ -313,6 +313,19 @@ clearenv ()
return 0;
}
#ifdef _LIBC
static void
free_mem (void)
{
/* Remove all traces. */
clearenv ();

/* Now remove the search tree. */
__tdestroy (known_values, free);
known_values = NULL;
}
text_set_element (__libc_subfreeres, free_mem);


# undef setenv
# undef unsetenv
# undef clearenv
Expand Down

0 comments on commit 69071b2

Please sign in to comment.