Update base.cpp
parent
c3db061c6a
commit
31bfc4acb8
|
@ -112,7 +112,7 @@ std::recursive_mutex global_mutex;
|
||||||
|
|
||||||
SteamAPICall_t generate_steam_api_call_id() {
|
SteamAPICall_t generate_steam_api_call_id() {
|
||||||
static SteamAPICall_t a;
|
static SteamAPICall_t a;
|
||||||
randombytes(a);
|
randombytes((uint8_t*)&a, sizeof(a));
|
||||||
++a;
|
++a;
|
||||||
if (a == 0) ++a;
|
if (a == 0) ++a;
|
||||||
return a;
|
return a;
|
||||||
|
@ -120,7 +120,7 @@ SteamAPICall_t generate_steam_api_call_id() {
|
||||||
|
|
||||||
int generate_random_int() {
|
int generate_random_int() {
|
||||||
int a;
|
int a;
|
||||||
randombytes(a);
|
randombytes((uint8_t*)&a, sizeof(a));
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -135,7 +135,7 @@ static uint32 generate_steam_ticket_id() {
|
||||||
static unsigned generate_account_id()
|
static unsigned generate_account_id()
|
||||||
{
|
{
|
||||||
int a;
|
int a;
|
||||||
randombytes(a);
|
randombytes((uint8_t*)&a, sizeof(a));
|
||||||
a = abs(a);
|
a = abs(a);
|
||||||
if (!a) ++a;
|
if (!a) ++a;
|
||||||
return a;
|
return a;
|
||||||
|
|
Loading…
Reference in New Issue