提交 fe81a1b0 编写于 作者: M Matt Caswell

Remove useless assignment

The variable assignment c1 is never read before it is overwritten.
Reviewed-by: NTim Hudson <tjh@openssl.org>
上级 08f6ae5b
......@@ -729,9 +729,8 @@ void bn_mul_high(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, BN_ULONG *l, int n2,
*/
if (l != NULL) {
lp = &(t[n2 + n]);
c1 = (int)(bn_add_words(lp, &(r[0]), &(l[0]), n));
bn_add_words(lp, &(r[0]), &(l[0]), n);
} else {
c1 = 0;
lp = &(r[0]);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册