tor/src
Nick Mathewson 24544a10c0 Clean up test_hs.c: warning fix; tor_free() usage.
My OSX laptop rightly gave a warning because of sticking strlen() into
an int, but once I took a closer look... it appears that the strlen()
was part of a needlessly verbose implementation for tor_strdup().

While I was there, I fixed the usage of tor_free() in test_hs.c: It
checks for NULL, and it zeros its argument.  So instead of
    if (foo) {
      tor_free(foo);
      foo = NULL;
    }
we should just say
    tor_free(foo);
2014-02-03 16:12:30 -05:00
..
common Some anti-forensics paranoia... 2014-02-03 10:44:19 -05:00
config Merge remote-tracking branch 'karsten/geoip-manual-update-oct2013' 2013-10-11 11:17:25 -04:00
ext Prepare patch for ticket 5129 for merging. 2013-08-02 09:35:24 -04:00
or TransProxyType replaces TransTPROXY option 2014-02-03 13:56:19 -05:00
test Clean up test_hs.c: warning fix; tor_free() usage. 2014-02-03 16:12:30 -05:00
tools Make tor-gencert create 2048 bit signing keys. 2013-12-12 17:39:22 +01:00
win32 Bump version to 0.2.5.1-alpha-dev 2013-10-02 22:41:41 -04:00
include.am