Thumbnail

rani/cscroll.git

Clone URL: https://git.buni.party/rani/cscroll.git

commit 866dadede85bcdff6a718b430f748d36604c2a0e Author: Raniconduh <clagv.randomgames@gmail.com> Date: Thu Jan 12 09:37:56 2023 +0000 append null terminator to string in config reader diff --git a/src/opts.c b/src/opts.c index 175a3c0..62fc972 100644 --- a/src/opts.c +++ b/src/opts.c @@ -1646 +1647 @@ void read_config(void) {   line[len++] = c;   }   + line[len] = '\0';   if (*line) parse_var(line);   }