diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2000-07-26 01:39:23 +0000 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2000-07-26 01:39:23 +0000 |
commit | 033d001e907f4ca7f9a3876e6b1033dec6d7cb1b (patch) | |
tree | 67fc47953f1907100bf4b287bc54a0896651985b /crypto/rand/rand.h | |
parent | 284ef5f35710b9fbff82abc20cced66d2dcff7c1 (diff) | |
download | openssl-new-033d001e907f4ca7f9a3876e6b1033dec6d7cb1b.tar.gz |
Fix warnings.
In crypto/err/err.c need to initialise p to
NULL in case thread_hash is NULL. Otherwise
p will be uninitialized.
Diffstat (limited to 'crypto/rand/rand.h')
-rw-r--r-- | crypto/rand/rand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rand/rand.h b/crypto/rand/rand.h index 3ea37729f7..971880edaa 100644 --- a/crypto/rand/rand.h +++ b/crypto/rand/rand.h @@ -91,7 +91,7 @@ const char *RAND_file_name(char *file,int num); int RAND_status(void); int RAND_egd(const char *path); int RAND_egd_bytes(const char *path,int bytes); -void ERR_load_RAND_strings(void);
+void ERR_load_RAND_strings(void); int RAND_poll(void); #ifdef __cplusplus |