diff options
author | Marek Majkowski <marek@popcount.org> | 2013-06-20 16:56:54 +0100 |
---|---|---|
committer | Marek Majkowski <marek@popcount.org> | 2013-06-20 16:56:54 +0100 |
commit | 1555876d5f27acaa9326045e33b6e2bfc1013c7f (patch) | |
tree | e20e6c8074ba92ffb29c84b86fd1697c99f61772 /src/or/rendservice.c | |
parent | d7538b57b49669afef0cb3dd03e0ed1a118a98fd (diff) | |
download | tor-1555876d5f27acaa9326045e33b6e2bfc1013c7f.tar.gz tor-1555876d5f27acaa9326045e33b6e2bfc1013c7f.zip |
Fix #9108 - make global_circuitlist a doubly linked list
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r-- | src/or/rendservice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c index a8f63ddf66..7f771918cc 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -543,7 +543,7 @@ rend_config_services(const or_options_t *options, int validate_only) /* XXXX it would be nicer if we had a nicer abstraction to use here, * so we could just iterate over the list of services to close, but * once again, this isn't critical-path code. */ - for (circ = circuit_get_global_list_(); circ; circ = circ->next) { + TOR_LIST_FOREACH(circ, circuit_get_global_list_(), head) { if (!circ->marked_for_close && circ->state == CIRCUIT_STATE_OPEN && (circ->purpose == CIRCUIT_PURPOSE_S_ESTABLISH_INTRO || @@ -2381,7 +2381,7 @@ count_established_intro_points(const char *query) { int num_ipos = 0; circuit_t *circ; - for (circ = circuit_get_global_list_(); circ; circ = circ->next) { + TOR_LIST_FOREACH(circ, circuit_get_global_list_(), head) { if (!circ->marked_for_close && circ->state == CIRCUIT_STATE_OPEN && (circ->purpose == CIRCUIT_PURPOSE_S_ESTABLISH_INTRO || |