1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-07 06:42:56 +03:00

Remove srand from fuzz

Signed-off-by: Ben Taylor <ben.taylor@linaro.org>
This commit is contained in:
Ben Taylor
2025-03-19 13:51:42 +00:00
parent 03c05c336e
commit b9f83b3d07
4 changed files with 0 additions and 8 deletions

View File

@@ -141,8 +141,6 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
//There may be other options to add :
// mbedtls_ssl_conf_cert_profile, mbedtls_ssl_conf_sig_hashes
srand(1);
if (mbedtls_ssl_setup(&ssl, &conf) != 0) {
goto exit;
}