r19267@catbus: nickm | 2008-04-09 14:19:17 -0400

Backport 14204: start policy reference counts at 1, not 2.


svn:r14331
This commit is contained in:
Nick Mathewson 2008-04-09 18:24:48 +00:00
parent 73842d8045
commit ae0d14d346
3 changed files with 4 additions and 2 deletions

View File

@ -9,6 +9,8 @@ Changes in version 0.2.0.24-rc - 2008-04-0?
using the .exit notation, rather than just launching an infinite
pile of circuits. Fixes bug 641. Reported by Sebastian Hahn.
- When opening a logfile fails, tell us why.
- Keep address policies from leaking: start their refcount at 1, not 2.
Bugfix on 0.2.0.16-alpha.
Changes in version 0.2.0.23-rc - 2008-03-24

View File

@ -3,7 +3,7 @@
description of the patch.)
Backport items for 0.2.0:
- r14204: start policy refcounts at 1, not 2.
o r14204: start policy refcounts at 1, not 2.
- r14205: free authority certs on exit.
- r14212: free static hashtables and log mutex on exit.
- r14214: don't read torrc when all we

View File

@ -495,7 +495,7 @@ addr_policy_get_canonical_entry(addr_policy_t *e)
found = tor_malloc_zero(sizeof(policy_map_ent_t));
found->policy = tor_memdup(e, sizeof(addr_policy_t));
found->policy->is_canonical = 1;
found->policy->refcnt = 1;
found->policy->refcnt = 0;
HT_INSERT(policy_map, &policy_root, found);
}