Index: /trunk/server/memcached.c
===================================================================
--- /trunk/server/memcached.c (revision 786)
+++ /trunk/server/memcached.c (revision 787)
@@ -298,6 +298,6 @@
 
     if (NULL == c) {
-        if (!(c = (conn *)malloc(sizeof(conn)))) {
-            fprintf(stderr, "malloc()\n");
+        if (!(c = (conn *)calloc(1, sizeof(conn)))) {
+            fprintf(stderr, "calloc()\n");
             return NULL;
         }
