mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
ffc: use sizeof(*pointer) instead of sizeof(struct) in memset(3) call.
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11101)
This commit is contained in:
parent
4f94f74898
commit
86cde3187d
@ -15,7 +15,7 @@
|
||||
|
||||
void ffc_params_init(FFC_PARAMS *params)
|
||||
{
|
||||
memset(params, 0, sizeof(FFC_PARAMS));
|
||||
memset(params, 0, sizeof(*params));
|
||||
params->pcounter = -1;
|
||||
params->gindex = FFC_UNVERIFIABLE_GINDEX;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user