From . 2015-04-01 Ludovic Courtès * src/syslogd.c (load_conffile): Use 'bcopy' instead of 'strcpy' since the two regions may overlap. Reported by Alex Kost at . --- a/src/syslogd.c +++ b/src/syslogd.c @@ -1989,7 +1989,7 @@ load_conffile (const char *filename, struct filed **nextp) if (*p == '\0' || *p == '#') continue; - strcpy (cline, p); + bcopy (p, cline, strlen (p) + 1); /* Cut the trailing spaces. */ for (p = strchr (cline, '\0'); isspace (*--p);) 80b51f128ef'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2022-05-22gnu: libobjc2: Fix typo in description.Tobias Geerinckx-Rice
2022-05-20gnu: Add libobjc2.Zhu Zihao
2022-05-20gnu: Use license: prefix for gnu/packages/gnustep.scm.Zhu Zihao
2021-12-13gnu: Simplify package inputs.Ludovic Courtès
2020-08-04gnu: wmnd: Update to 0.4.18.Kei Kebreau
2020-07-17gnu: windowmaker: Update to 0.95.9.Kei Kebreau
2020-05-20gnu: wmbattery: Update to 2.54.Tobias Geerinckx-Rice
2020-03-04Merge branch 'master' into core-updatesMarius Bakke
2020-02-18gnu: Use HTTPS for www.dockapps.net home pages.Tobias Geerinckx-Rice
2020-01-22gnu: Replace uses of 'libjpeg' with 'libjpeg-turbo'.Marius Bakke