mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-06-07 17:11:56 +00:00
Fix entropy generation typo
This commit is contained in:
parent
417972bea1
commit
3ac8b54afd
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ extern "C" int main(int argc,char *argv[])
|
|||
// Couple pointers to help enhance entropy, suppported by the system's ASLR if available
|
||||
{
|
||||
void *p = malloc(1);
|
||||
Randomness::init((uintptr_t)argv, (uintptr_t)&dsqParam, (uintptr_t)&(malloc), (uintptr_t)&p);
|
||||
Randomness::init((uintptr_t)argv, (uintptr_t)&dsqParam, (uintptr_t)&(malloc), (uintptr_t)p);
|
||||
free(p);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue