fix: malloc size was too small

This commit is contained in:
gbrochar 2024-02-14 17:18:09 +01:00
parent adf7a34fa6
commit 038719bb26
1 changed files with 1 additions and 1 deletions

View File

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