Open Paranoid-Dev opened 3 years ago
Because of max char array size in C, downloading very long fics causes segmentation fault. Should change the code to not store the entire chapter/story in 1 char array.
or malloc static char it
Partial unsatisfying fix with static char buf[10000000]; Will change it to malloc in next update
static char buf[10000000];
Because of max char array size in C, downloading very long fics causes segmentation fault. Should change the code to not store the entire chapter/story in 1 char array.