提交 2d06fd83 编写于 作者: M Martin Etnestad 提交者: Tom Rini

Initialize SHA buffer size var in passwd_abort

The call to hash_block in passwd_abort fails with error ENOSPC on some
systems. The reason is that the variable which specifies the size of the
buffer to contain the computed hash does not get initialized.

This patch initializes the variable with the size of the buffer.
Signed-off-by: NMartin Etnestad <martin.etnestad@appeartv.com>
上级 5b893baf
......@@ -57,7 +57,7 @@ static int passwd_abort(uint64_t etime)
const char *algo_name = "sha256";
u_int presskey_len = 0;
int abort = 0;
int size;
int size = sizeof(sha);
int ret;
if (sha_env_str == NULL)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册