apps/speed.c: address asan failure with small -bytes and large -misalign.
Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6311)
This commit is contained in:
parent
44ca7565a6
commit
2fc45cb805
1 changed files with 4 additions and 1 deletions
|
@ -1690,7 +1690,10 @@ int speed_main(int argc, char **argv)
|
|||
}
|
||||
}
|
||||
|
||||
buflen = lengths[size_num - 1] + MAX_MISALIGNMENT + 1;
|
||||
buflen = lengths[size_num - 1];
|
||||
if (buflen < 36) /* size of random vector in RSA bencmark */
|
||||
buflen = 36;
|
||||
buflen += MAX_MISALIGNMENT + 1;
|
||||
loopargs[i].buf_malloc = app_malloc(buflen, "input buffer");
|
||||
loopargs[i].buf2_malloc = app_malloc(buflen, "input buffer");
|
||||
memset(loopargs[i].buf_malloc, 0, buflen);
|
||||
|
|
Loading…
Reference in a new issue