Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 13 Dec 2004 21:50:20 +0000 (21:50 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 13 Dec 2004 21:50:20 +0000 (21:50 +0000)
2004-12-13  Ulrich Drepper  <drepper@redhat.com>

* nss/getnssent.c (__nss_getent): Double buffer size each round to
avoid problems with delays for some people's huge entries.
* nss/getXXbyYY.c (FUNCTION_NAME): Likewise.

ChangeLog
nss/getXXbyYY.c
nss/getnssent.c

index 0a499e4..229faa3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-12-13  Ulrich Drepper  <drepper@redhat.com>
+
+       * nss/getnssent.c (__nss_getent): Double buffer size each round to
+       avoid problems with delays for some people's huge entries.
+       * nss/getXXbyYY.c (FUNCTION_NAME): Likewise.
+
 2004-12-13  Jakub Jelinek  <jakub@redhat.com>
 
        * posix/getconf.c (main): Prepend just $GETCONF_DIR/ instead of
index 854a3e8..dd0ac84 100644 (file)
@@ -123,7 +123,7 @@ FUNCTION_NAME (ADD_PARAMS)
         )
     {
       char *new_buf;
-      buffer_size += BUFLEN;
+      buffer_size *= 2;
       new_buf = (char *) realloc (buffer, buffer_size);
       if (new_buf == NULL)
        {
index a56d34d..1f7573d 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.
+/* Copyright (C) 2000, 2004 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
@@ -38,7 +38,7 @@ __nss_getent (getent_r_function func, void **resbuf, char **buffer,
         && (h_errnop == NULL || *h_errnop == NETDB_INTERNAL))
     {
       char *new_buf;
-      *buffer_size += buflen;
+      *buffer_size *= 2;
       new_buf = realloc (*buffer, *buffer_size);
       if (new_buf == NULL)
        {