diff options
Diffstat (limited to 'shadow/fgetspent.c')
-rw-r--r-- | shadow/fgetspent.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/shadow/fgetspent.c b/shadow/fgetspent.c index 2b24bd8534..63f16a10db 100644 --- a/shadow/fgetspent.c +++ b/shadow/fgetspent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997, 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1999, 2000, 2002 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 @@ -29,7 +29,7 @@ /* We need to protect the dynamic buffer handling. */ __libc_lock_define_initialized (static, lock); -static char *buffer; +libc_freeres_ptr (static char *buffer); /* Read one shadow entry from the given stream. */ struct spwd * @@ -86,13 +86,3 @@ fgetspent (FILE *stream) return result; } - - -/* Free all resources if necessary. */ -static void __attribute__ ((unused)) -free_mem (void) -{ - free (buffer); -} - -text_set_element (__libc_subfreeres, free_mem); |