mirror of https://github.com/openssl/openssl.git
Fix coverity 1498607: uninitialised value
Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17897)
This commit is contained in:
parent
92cae9b42d
commit
70cd9a5191
|
|
@ -978,6 +978,7 @@ __owur static int ecp_nistz256_points_mul(const EC_GROUP *group,
|
|||
return 0;
|
||||
}
|
||||
|
||||
memset(&p, 0, sizeof(p));
|
||||
BN_CTX_start(ctx);
|
||||
|
||||
if (scalar) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue