diff options
author | Roger Dingledine <arma@torproject.org> | 2003-10-18 03:23:26 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-10-18 03:23:26 +0000 |
commit | a3962bf6fc449cfa852d4bdc5e406244a91d2064 (patch) | |
tree | ba786ca2c9de2c2773d53cf11c2ac448bbc6244e /src/or/routers.c | |
parent | af3fc006a51326587a06818541570c95c31368d5 (diff) | |
download | tor-a3962bf6fc449cfa852d4bdc5e406244a91d2064.tar.gz tor-a3962bf6fc449cfa852d4bdc5e406244a91d2064.zip |
fix two more memory problems
one remains :)
svn:r621
Diffstat (limited to 'src/or/routers.c')
-rw-r--r-- | src/or/routers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routers.c b/src/or/routers.c index 2607c12059..f04fd24ed2 100644 --- a/src/or/routers.c +++ b/src/or/routers.c @@ -771,7 +771,6 @@ routerinfo_t *router_get_entry_from_string(char**s) { directory_token_t _tok; directory_token_t *tok = &_tok; struct tm published; - int t; #define NEXT_TOKEN() \ @@ -916,6 +915,7 @@ routerinfo_t *router_get_entry_from_string(char**s) { goto err; } + router_release_token(tok); /* free the signature */ return router; err: |