From 866b6f5cec9147865b6d9546c77ec1a3d60f0dbc Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 10 Jan 2009 14:49:41 +0000 Subject: [PATCH] Backport r18064: fix harmless-to-us bug in ht.h svn:r18067 --- src/common/ht.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/ht.h b/src/common/ht.h index 762f836bd..0aefc6dc0 100644 --- a/src/common/ht.h +++ b/src/common/ht.h @@ -420,6 +420,7 @@ ht_string_hash(const char *s) #define _HT_FOI_INSERT(field, head, elm, newent, var) \ { \ newent->field.hte_hash = (elm)->field.hte_hash; \ + newent->field.hte_next = NULL; \ *var = newent; \ ++((head)->hth_n_entries); \ }