2003-05-16 Roland McGrath <roland@redhat.com>

* sysdeps/unix/sysv/linux/register-atfork.c (libc_freeres_fn): Fix
	uninitialized variable braino.
This commit is contained in:
Roland McGrath 2003-05-17 00:59:09 +00:00
parent 23ae645174
commit 3e335bbc32
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ libc_freeres_fn (free_mem)
/* We can free the memory after releasing the lock. */
while (runp != NULL)
{
struct fork_handler_pool *oldp;
struct fork_handler_pool *oldp = runp;
runp = runp->next;
free (oldp);
}