about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--nscd/grpcache.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 710d6db138..6ad0e1aeaa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2011-10-06  Ulrich Drepper  <drepper@gmail.com>
 
+	* nscd/grpcache.c (cache_addgr): Initialize written in all cases.
+
 	* nss/nsswitch.c (__nss_lookup_function): Fix order of deleting
 	from tree and freeing node.
 
diff --git a/nscd/grpcache.c b/nscd/grpcache.c
index 8a2f80ccdb..e9607c6f11 100644
--- a/nscd/grpcache.c
+++ b/nscd/grpcache.c
@@ -117,6 +117,8 @@ cache_addgr (struct database_dyn *db, int fd, request_header *req,
 	  if (fd != -1)
 	    written = TEMP_FAILURE_RETRY (send (fd, &notfound, total,
 						MSG_NOSIGNAL));
+	  else
+	    written = total;
 
 	  /* If we cannot permanently store the result, so be it.  */
 	  if (db->negtimeout == 0)