fix: malloc size was too small
This commit is contained in:
parent
adf7a34fa6
commit
038719bb26
|
@ -4,7 +4,7 @@ int *random_bits(int n) {
|
|||
int fd = open("/dev/urandom", O_RDONLY);
|
||||
ft_log(INFO, "fd");
|
||||
ft_log(INFO, ft_itoa(fd));
|
||||
int *random_bits = (int *)malloc(n >> 4);
|
||||
int *random_bits = (int *)malloc(n >> 3);
|
||||
if (!random_bits) {
|
||||
ft_log(ERROR, "allocation failed on random_bits");
|
||||
exit(1);
|
||||
|
|
Loading…
Reference in New Issue