mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
* sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Fix
memory reallocation. 2007-02-27 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Fix memory reallocation.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2007-02-27 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request): Fix
|
||||||
|
memory reallocation.
|
||||||
|
|
||||||
2007-02-21 Ulrich Drepper <drepper@redhat.com>
|
2007-02-21 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* stdlib/strtod_l.c (____STRTOF_INTERNAL): Add branch predictions
|
* stdlib/strtod_l.c (____STRTOF_INTERNAL): Add branch predictions
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* getifaddrs -- get names and addresses of all network interfaces
|
/* getifaddrs -- get names and addresses of all network interfaces
|
||||||
Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -195,7 +195,7 @@ __netlink_request (struct netlink_handle *h, int type)
|
|||||||
char *new_buf = realloc (use_malloc ? buf : NULL, this_buf_size);
|
char *new_buf = realloc (use_malloc ? buf : NULL, this_buf_size);
|
||||||
if (new_buf == NULL)
|
if (new_buf == NULL)
|
||||||
goto out_fail;
|
goto out_fail;
|
||||||
new_buf = buf;
|
buf = new_buf;
|
||||||
|
|
||||||
use_malloc = true;
|
use_malloc = true;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user