From: ganesh Date: Wed, 9 Nov 2016 15:14:22 +0000 (+0530) Subject: Fixed the return code of RAND_query_egd_bytes when connect fails. X-Git-Tag: OpenSSL_1_1_1-pre1~2631 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1381684daf8800487b48a70cd634f433b1d6366f;p=oweals%2Fopenssl.git Fixed the return code of RAND_query_egd_bytes when connect fails. Reviewed-by: Rich Salz Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/1886) --- diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c index fb6bad70dc..5fb230fa95 100644 --- a/crypto/rand/rand_egd.c +++ b/crypto/rand/rand_egd.c @@ -133,6 +133,7 @@ int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) break; # endif default: + ret = -1; goto err; /* failure */ } } @@ -230,9 +231,7 @@ int RAND_egd_bytes(const char *path, int bytes) int num, ret = 0; num = RAND_query_egd_bytes(path, NULL, bytes); - if (num < 1) - goto err; - if (RAND_status() == 1) + if (num < 1 || RAND_status() == 1) ret = num; err: return (ret);