1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 18:02:15 -05:00
This commit is contained in:
Jesse Vincent 2013-08-27 14:55:47 -04:00
parent fbe62c544e
commit 8e875fd059

View File

@ -215,6 +215,12 @@ public final class PRNGFixes {
out.flush();
mSeeded = true;
} catch (IOException e) {
// Some devices don't have a writable urandom:
// Certain third-party android builds replace urandom with
// frandom and erandom, which make urandom into a symlink to
// erandom
// Details can be found in
// https://github.com/k9mail/k-9/pull/367
mSeeded = true;
}
}