mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
Do not use uninitialized memory to seed the PRNG as it may confuse
code checking tools. PR: 1499
This commit is contained in:
parent
6e7ca5e1eb
commit
c9fb4e2c8d
@ -103,10 +103,8 @@ int RAND_load_file(const char *file, long bytes)
|
||||
if (file == NULL) return(0);
|
||||
|
||||
#ifndef OPENSSL_NO_POSIX_IO
|
||||
i=stat(file,&sb);
|
||||
/* If the state fails, put some crap in anyway */
|
||||
if (stat(file,&sb) < 0) return(0);
|
||||
RAND_add(&sb,sizeof(sb),0.0);
|
||||
if (i < 0) return(0);
|
||||
#endif
|
||||
if (bytes == 0) return(ret);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user