projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
use <= instead of ==
[openssl.git]
/
crypto
/
rand
/
randfile.c
diff --git
a/crypto/rand/randfile.c
b/crypto/rand/randfile.c
index fe4f2a9a211e95fa835c566e5ba196cc52ca43d1..02f16aa810329d28ee698dc51a05130f37645c9a 100644
(file)
--- a/
crypto/rand/randfile.c
+++ b/
crypto/rand/randfile.c
@@
-120,7
+120,7
@@
int RAND_load_file(const char *file, long bytes)
if (bytes > 0)
{
bytes-=n;
- if (bytes
=
= 0) break;
+ if (bytes
<
= 0) break;
}
}
fclose(in);