1
0
Fork 0
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:
fgenesis 2025-05-30 06:14:30 +02:00
parent 417972bea1
commit 3ac8b54afd

View file

@ -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);
}