summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2006-07-27 18:35:25 +0000
committerNick Mathewson <nickm@torproject.org>2006-07-27 18:35:25 +0000
commit8786b4b88e6e15333724b1a0374f6388b674ce16 (patch)
tree39da7cbb0a7fc6db3bd2190a250e9c6cfb543e5e
parent45c3a4365ff07f1a8f3deee2708eb6c902c9fa24 (diff)
downloadtor-8786b4b88e6e15333724b1a0374f6388b674ce16.tar.gz
tor-8786b4b88e6e15333724b1a0374f6388b674ce16.zip
Fix a bug in HT_REMOVE.
svn:r6925
-rw-r--r--src/common/ht.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/ht.h b/src/common/ht.h
index 41ebf41b2f..a83e093264 100644
--- a/src/common/ht.h
+++ b/src/common/ht.h
@@ -88,7 +88,6 @@ ht_string_hash(const char *s)
#define _HT_SET_HASH(elm, field, hashfn) \
do { \
- elm->field.hte_next = NULL; \
elm->field.hte_hash = hashfn(elm); \
} while (0)