RAND_egd_bytes: No need to check RAND_status on connection error.

Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1886)
This commit is contained in:
ganesh 2016-11-11 08:43:13 +05:30 committed by Richard Levitte
parent 3ed93c8633
commit c2114afc16

View File

@ -231,6 +231,8 @@ int RAND_egd_bytes(const char *path, int bytes)
int num, ret = -1;
num = RAND_query_egd_bytes(path, NULL, bytes);
if (num < 0)
goto err;
if (RAND_status() == 1)
ret = num;
err: