forked from wolfSSL/wolfssl
wc_ShaFinal(): remove superfluous ret=0 when WOLF_CRYPTO_CB, complained by PRB-scan-build-distro-check.
This commit is contained in:
@@ -679,7 +679,6 @@ int wc_ShaFinal(wc_Sha* sha, byte* hash)
|
|||||||
ret = wc_CryptoCb_ShaHash(sha, NULL, 0, hash);
|
ret = wc_CryptoCb_ShaHash(sha, NULL, 0, hash);
|
||||||
if (ret != CRYPTOCB_UNAVAILABLE)
|
if (ret != CRYPTOCB_UNAVAILABLE)
|
||||||
return ret;
|
return ret;
|
||||||
ret = 0; /* reset ret */
|
|
||||||
/* fall-through when unavailable */
|
/* fall-through when unavailable */
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user