diff --git a/mcrypt-CVE-2012-4426.patch b/mcrypt-CVE-2012-4426.patch new file mode 100644 index 0000000..747f428 --- mcrypt-2.6.8/src/errors.c +++ mcrypt-2.6.8/src/errors.c @@ -25,24 +25,24 @@ void err_quit(char *errmsg) { - fprintf(stderr, errmsg); + fprintf(stderr, "%s", errmsg); exit(-1); } void err_warn(char *errmsg) { if (quiet <= 1) - fprintf(stderr, errmsg); + fprintf(stderr, "%s", errmsg); } void err_info(char *errmsg) { if (quiet == 0) - fprintf(stderr, errmsg); + fprintf(stderr, "%s", errmsg); } void err_crit(char *errmsg) { if (quiet <= 2) - fprintf(stderr, errmsg); + fprintf(stderr, "%s", errmsg); } --- 70e1dcc4ba7c0b38ea426d93'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/doc/environment-gdb.scm
AgeCommit message (Expand)Author
2022-01-14doc: Update "guix shell -D -f" example to new input style....Ludovic Courtès