summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/rand/randfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rand/randfile.c b/crypto/rand/randfile.c
index 45d20e5c03..1b737d1ba2 100644
--- a/crypto/rand/randfile.c
+++ b/crypto/rand/randfile.c
@@ -110,7 +110,7 @@ int RAND_load_file(const char *file, long bytes)
if (bytes < 0) {
if (S_ISREG(sb.st_mode))
- bytes = (sb.st_size <= LONG_MAX) ? sb.st_size : LONG_MAX;
+ bytes = sb.st_size;
else
bytes = RAND_DRBG_STRENGTH;
}