提交 af6f3881 编写于 作者: B Bodo Möller

Don't "goto err" in client_master_key because no such label exists;

just return -1 as in other error cases.
上级 af5eb829
......@@ -567,7 +567,7 @@ static int client_master_key(SSL *s)
if (RAND_bytes(sess->master_key,i) <= 0)
{
ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
goto err;
return(-1);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册