From: Nick Mathewson Date: Wed, 25 Nov 2015 14:04:17 +0000 (-0500) Subject: Tweak gtank's sha512 patch a little X-Git-Tag: tor-0.2.8.1-alpha~220 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7194d3d95705a30cec69574ff2800cba8e739df9;p=thirdparty%2Ftor.git Tweak gtank's sha512 patch a little --- diff --git a/changes/feature17663 b/changes/feature17663 index f867c038df..baad9436fc 100644 --- a/changes/feature17663 +++ b/changes/feature17663 @@ -1,2 +1,3 @@ - o Minor feature: - - Adds SHA512 support to crypto.c + o Minor feature (crypto): + - Add SHA512 support to crypto.c. Closes ticket 17663; patch from + George Tankersley. diff --git a/src/common/crypto.c b/src/common/crypto.c index 72e08c98ce..587971934b 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -1890,8 +1890,7 @@ crypto_digest_smartlist_prefix(char *digest_out, size_t len_out, crypto_digest_get_digest(d, digest_out, len_out); free: - if (d != NULL) - crypto_digest_free(d); + crypto_digest_free(d); } /** Compute the HMAC-SHA-256 of the msg_len bytes in msg, using