Incorrect length in calloc() call, already fixed upstream.

PR:		204769
Submitted by:	David Binderman <dcb314@hotmail.com>
MFC after:	1 week
This commit is contained in:
Dag-Erling Smørgrav 2015-12-17 19:36:25 +00:00
parent 8d7e7a98db
commit 22f393c35d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=292408

View file

@ -147,7 +147,7 @@ ssh_digest_start(int alg)
const struct ssh_digest *digest = ssh_digest_by_alg(alg);
struct ssh_digest_ctx *ret;
if (digest == NULL || (ret = calloc(1, sizeof(ret))) == NULL)
if (digest == NULL || (ret = calloc(1, sizeof(*ret))) == NULL)
return NULL;
if ((ret->mdctx = calloc(1, digest->ctx_len)) == NULL) {
free(ret);