diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-07-27 18:35:25 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-07-27 18:35:25 +0000 |
commit | 8786b4b88e6e15333724b1a0374f6388b674ce16 (patch) | |
tree | 39da7cbb0a7fc6db3bd2190a250e9c6cfb543e5e /src/common/ht.h | |
parent | 45c3a4365ff07f1a8f3deee2708eb6c902c9fa24 (diff) | |
download | tor-8786b4b88e6e15333724b1a0374f6388b674ce16.tar.gz tor-8786b4b88e6e15333724b1a0374f6388b674ce16.zip |
Fix a bug in HT_REMOVE.
svn:r6925
Diffstat (limited to 'src/common/ht.h')
-rw-r--r-- | src/common/ht.h | 1 |
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) |