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); } --- a13a3c92a7db308db8c0d81cb474ad7799'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/aux-files/renpy
AgeCommit message (Expand)Author
2022-01-15gnu: renpy: Move renpy command to aux-files....Liliana Marie Prikler