diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/or/routerlist.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -4,6 +4,8 @@ Changes in version 0.2.0.10-alpha - 2007-1?-?? on 0.2.0.x. - Stop leaking memory every time we parse a v3 certificate. Bugfix on 0.2.0.1-alpha. + - Stop leaking memory every time we load a v3 certificate. Bugfix + on 0.2.0.1-alpha. Fixes Bug 536. Changes in version 0.2.0.9-alpha - 2007-10-24 diff --git a/src/or/routerlist.c b/src/or/routerlist.c index e86e2d51f5..d12e26f0bc 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -140,8 +140,6 @@ trusted_dirs_load_certs_from_string(const char *contents, int from_store) if (found) continue; - cert->cache_info.signed_descriptor_body = tor_strndup(s, eos-s); - cert->cache_info.signed_descriptor_len = eos-s; smartlist_add(ds->v3_certs, cert); if (!from_store) |