[BZ #4074]
authorUlrich Drepper <drepper@redhat.com>
Wed, 21 Feb 2007 09:05:36 +0000 (09:05 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 21 Feb 2007 09:05:36 +0000 (09:05 +0000)
* nscd/pwdcache.c (cache_addpw): In case a record changed on
refresh, adjust key_copy.

ChangeLog
nscd/pwdcache.c

index 30d4c8291a0a1813061ccc89e2395c4a7f7be52e..a8652006250ed0c9c143ba6506244ad7b439e4af 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2007-02-21  Ulrich Drepper  <drepper@redhat.com>
 
+       [BZ #4074]
+       * nscd/pwdcache.c (cache_addpw): In case a record changed on
+       refresh, adjust key_copy.
+
        [BZ #4070]
        * stdio-common/printf_fp.c (___printf_fp): Handle a few more
        * stdio-common/tfformat.c (sprint_doubles): Some more tests.
index 0461ec91ce78d130544cd8deeba65231ff22ed57..ab41bcc0d566e2e4c30ebf16c4d143d2ceccf731 100644 (file)
@@ -274,6 +274,7 @@ cache_addpw (struct database_dyn *db, int fd, request_header *req,
                {
                  /* Adjust pointer into the memory block.  */
                  cp = (char *) newp + (cp - (char *) dataset);
+                 key_copy = (char *) newp + (key_copy - (char *) dataset);
 
                  dataset = memcpy (newp, dataset, total + n);
                  alloca_used = false;