diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-02-07 04:40:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-02-07 04:40:57 +0000 |
commit | 1a9dd4e4e42315b3c744b346e4696d1362b1fc9a (patch) | |
tree | 74a32492c582e7e6d3b96340f7526a2cafec9849 /resolv/res_libc.c | |
parent | 41f128dc0470fd006dbeebd0cb06534bc56a5e16 (diff) | |
download | glibc-1a9dd4e4e42315b3c744b346e4696d1362b1fc9a.tar.gz |
[BZ #9781]
* grp/compat-initgroups.c (compat_call): Switch to use malloc when
the input line is too long.
Diffstat (limited to 'resolv/res_libc.c')
-rw-r--r-- | resolv/res_libc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/resolv/res_libc.c b/resolv/res_libc.c index 8af57f7a4a..810fbc804d 100644 --- a/resolv/res_libc.c +++ b/resolv/res_libc.c @@ -96,10 +96,9 @@ __res_maybe_init (res_state resp, int preinit) { if (resp->options & RES_INIT) { if (__res_initstamp != resp->_u._ext.initstamp) { - if (resp->nscount > 0) { + if (resp->nscount > 0) __res_iclose (resp, true); - return __res_vinit (resp, 1); - } + return __res_vinit (resp, 1); } return 0; } else if (preinit) { |