diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-08-16 00:29:27 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-08-16 00:46:44 +0200 |
commit | 561ca9b987e093755603f1cce8f7d783c7b3006e (patch) | |
tree | 986bcf1fab60a67173acf883cd0a59f647af6473 /src/or/geoip.c | |
parent | a64e660f0e146d8530da74d74bc9c196e6ac21fe (diff) | |
download | tor-561ca9b987e093755603f1cce8f7d783c7b3006e.tar.gz tor-561ca9b987e093755603f1cce8f7d783c7b3006e.zip |
Fix misplaced labels
Diffstat (limited to 'src/or/geoip.c')
-rw-r--r-- | src/or/geoip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/geoip.c b/src/or/geoip.c index cde9cabdb3..d9c8a01519 100644 --- a/src/or/geoip.c +++ b/src/or/geoip.c @@ -829,7 +829,7 @@ geoip_get_client_history(geoip_client_action_t action) smartlist_add(chunks, buf); }); result = smartlist_join_strings(chunks, ",", 0, NULL); -done: + done: tor_free(counts); if (chunks) { SMARTLIST_FOREACH(chunks, char *, c, tor_free(c)); |