diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-04-14 22:49:19 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-04-14 22:49:19 +0800 |
commit | 3bdfae61a23e597acd97db189feea74fb27e028a (patch) | |
tree | 4784b179e19f4db7b40dca3cdd7ab2741476c608 /random.c | |
parent | 4404126501ba18184a8e04f815c21e7a9184414a (diff) | |
parent | adeb372a66643000aee8445f8b2f9854fdfb4402 (diff) |
merge
Diffstat (limited to 'random.c')
-rw-r--r-- | random.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -157,6 +157,9 @@ static void write_urandom() /* This is opportunistic, don't worry about failure */ unsigned char buf[INIT_SEED_SIZE]; FILE *f = fopen(DROPBEAR_URANDOM_DEV, "w"); + if (!f) { + return; + } genrandom(buf, sizeof(buf)); fwrite(buf, sizeof(buf), 1, f); fclose(f); |