summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-07-12bump to 0.3.2.11 for releasetor-0.3.2.11Roger Dingledine
2018-07-12fold changes into 0.3.2.11Roger Dingledine
2018-07-12Merge branch 'maint-0.3.2' into release-0.3.2Nick Mathewson
2018-07-12Merge branch 'maint-0.2.9' into maint-0.3.2Nick Mathewson
2018-07-12put new bridge auth Serge into placeRoger Dingledine
The "Bifroest" bridge authority has been retired; the new bridge authority is "Serge", and it is operated by George from the TorBSD project. Closes ticket 26771.
2018-07-09Merge branch 'maint-0.3.2' into release-0.3.2Nick Mathewson
2018-07-09Merge remote-tracking branch 'github/bug26269_031' into maint-0.3.2Nick Mathewson
2018-07-09Merge branch 'maint-0.3.2' into release-0.3.2Nick Mathewson
2018-07-09Merge branch 'maint-0.2.9' into maint-0.3.2Nick Mathewson
2018-07-09Merge branch 'bug26269_029' into maint-0.2.9Nick Mathewson
2018-07-09Merge branch 'maint-0.3.2' into release-0.3.2Nick Mathewson
2018-07-09Merge branch 'maint-0.2.9' into maint-0.3.2Nick Mathewson
2018-07-06Update geoip and geoip6 to the July 3 2018 database.Karsten Loesing
2018-07-03Merge branch 'maint-0.3.2' into release-0.3.2Nick Mathewson
2018-07-03Merge branch 'maint-0.2.9' into maint-0.3.2Nick Mathewson
2018-07-03Merge branch 'bug26535_032' into maint-0.3.2Nick Mathewson
2018-07-03Merge branch 'bug26535_029' into maint-0.2.9Nick Mathewson
2018-07-02hs_ntor_ref.py: pass only strings to subprocess.PopenNick Mathewson
Recent Python3 versions seem to require this on Windows. Fixes bug 26535; bug copied from ntor_ref.py on 0.3.1.1-alpha.
2018-07-02ntor_ref.py: pass only strings to subprocess.PopenNick Mathewson
Recent Python3 versions seem to require this on Windows. Fixes bug 26535; bug introduced in f4be34f70d6f277a0f3f73e, which was apparently intended itself as a Python3 workaround.
2018-06-29Merge branch 'maint-0.3.2' into release-0.3.2Nick Mathewson
2018-06-29Merge branch 'maint-0.3.1' into maint-0.3.2Nick Mathewson
2018-06-29Merge branch 'maint-0.2.9' into maint-0.3.1maint-0.3.1Nick Mathewson
2018-06-29Finally remove our EOL@EOF check.Nick Mathewson
This check was added by mistake long ago. It will be nice to see these EOLs disappear from our code over time. (backport from master)
2018-06-29Merge branch 'maint-0.3.2' into release-0.3.2Nick Mathewson
2018-06-29Merge branch 'maint-0.3.1' into maint-0.3.2Nick Mathewson
2018-06-29Merge branch 'maint-0.2.9' into maint-0.3.1Nick Mathewson
2018-06-29Fix a memory error in test_shared_randomNick Mathewson
Bug not in any released Tor.
2018-06-29Fix some memory errors in the recent coverity fixes.Nick Mathewson
Found by asan on travis :/
2018-06-29Merge branch 'maint-0.3.2' into release-0.3.2Nick Mathewson
2018-06-29Merge remote-tracking branch 'ahf-github/maint-0.3.2' into maint-0.3.2Nick Mathewson
2018-06-29Merge branch 'maint-0.2.9' into maint-0.3.1Nick Mathewson
2018-06-29Merge branch 'maint-0.3.2' into release-0.3.2Nick Mathewson
2018-06-29Merge branch 'maint-0.3.1' into maint-0.3.2Nick Mathewson
2018-06-29Merge remote-tracking branch 'ahf-github/maint-0.3.0' into maint-0.3.1Nick Mathewson
2018-06-29Merge remote-tracking branch 'ahf-github/maint-0.3.1' into maint-0.3.1Nick Mathewson
2018-06-29Changes file for 26467Nick Mathewson
2018-06-29Merge branch 'maint-0.3.2' into release-0.3.2Nick Mathewson
2018-06-29Merge branch 'maint-0.3.1' into maint-0.3.2Nick Mathewson
2018-06-29Merge branch 'maint-0.2.9' into maint-0.3.1Nick Mathewson
2018-06-29Merge remote-tracking branch 'ahf-github/maint-0.2.9' into maint-0.2.9Nick Mathewson
2018-06-26Merge branch 'maint-0.3.2' into release-0.3.2Nick Mathewson
2018-06-26Merge branch 'maint-0.3.1' into maint-0.3.2Nick Mathewson
2018-06-26Merge branch 'maint-0.2.9' into maint-0.3.1Nick Mathewson
2018-06-26Merge branch 'feature26372_029' into maint-0.2.9Nick Mathewson
2018-06-23Fix memory leak in test_sr_setup_commits().Alexander Færøy
This patch fixes a memory leak in test_sr_setup_commits() where the place_holder is allocated, but never freed again. See: Coverity CID 1437440.
2018-06-23Fix memory leak in disk_state_parse_commits().Alexander Færøy
This patch fixes a memory leak in disk_state_parse_commits() where if commit is NULL, we continue the internal loop, but without ever freeing the args variable. See: Coverity CID 1437441.
2018-06-23Fix memory leak in frac_nodes_with_descriptors().Alexander Færøy
This patch fixes a memory leak in frac_nodes_with_descriptors() where we might return without free'ing the bandwidths variable. See: Coverity CID 1437451.
2018-06-23Fix memory leak in helper_add_hsdir_to_networkstatus().Alexander Færøy
This patch fixes a memory leak in helper_add_hsdir_to_networkstatus() where the rs object might not get properly freed. See: Coverity CID 1437427.
2018-06-23Fix memory leak in new_establish_intro_cell().Alexander Færøy
This patch fixes a memory leak in new_establish_intro_cell() that could happen if a test assertion fails and the *cell_out value isn't properly free'd. See: Coverity CID 1437445
2018-06-23Fix memory leak in test_channelpadding_consensus().Alexander Færøy
The relay variable is always allocated, but might not be freed before we return from this function. See: Coverity CID 1437431