diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-05-14 22:08:10 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-05-15 00:05:59 +0100 |
commit | d539be33590f7dfb0013187502744286f2959ee3 (patch) | |
tree | 8964a9107f7171cdbc0f490e581d92918462ed65 /src/crypto/random.c | |
parent | Merge pull request #826 (diff) | |
download | monero-d539be33590f7dfb0013187502744286f2959ee3.tar.xz |
crypto: make clear generate_random_bytes is not thread safe
And add a thread safe version to encourage proper use
Diffstat (limited to '')
-rw-r--r-- | src/crypto/random.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/random.c b/src/crypto/random.c index f8a50d850..6a9f63c12 100644 --- a/src/crypto/random.c +++ b/src/crypto/random.c @@ -113,7 +113,7 @@ INITIALIZER(init_random) { #endif } -void generate_random_bytes(size_t n, void *result) { +void generate_random_bytes_not_thread_safe(size_t n, void *result) { #if !defined(NDEBUG) assert(curstate == 1); curstate = 2; |