Fix for missing return code on `wc_Pic32HashFree`.

pull/1779/head
David Garske 2018-08-22 16:38:55 -07:00
parent 53af520911
commit 57d72028f6
1 changed files with 1 additions and 1 deletions

View File

@ -611,7 +611,7 @@ static int wc_Pic32HashFinal(hashUpdCache* cache, byte* stdBuf,
return ret;
}
static int wc_Pic32HashFree(hashUpdCache* cache, void* heap)
static void wc_Pic32HashFree(hashUpdCache* cache, void* heap)
{
if (cache && cache->buf && !cache->isCopy) {
XFREE(cache->buf, heap, DYNAMIC_TYPE_HASH_TMP);