diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-05-27 11:33:08 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-05-27 11:33:08 +0300 |
commit | bc4584c1ff6dc54653c780864f36a867855c992e (patch) | |
tree | f4819579e573bbd48daad96fc963d1e8583fb473 /src/crypto/random.c | |
parent | installing wallet_api header (diff) | |
parent | Merge pull request #842 (diff) | |
download | monero-bc4584c1ff6dc54653c780864f36a867855c992e.tar.xz |
Merge remote-tracking branch 'upstream/master'
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; |