1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

sshmd5.c: remove excessive return statement

This commit is contained in:
Pavel I. Kryukov 2019-01-02 19:55:54 +03:00 committed by Simon Tatham
parent 24b9e6716d
commit bcf6f52bf2

View File

@ -311,7 +311,7 @@ void hmacmd5_do_hmac(struct hmacmd5_context *ctx,
{
ssh2_mac_start(&ctx->mac);
put_data(&ctx->mac, blk, len);
return ssh2_mac_genresult(&ctx->mac, hmac);
ssh2_mac_genresult(&ctx->mac, hmac);
}
const struct ssh2_macalg ssh_hmac_md5 = {