diff options
author | Viorel Munteanu <ceamac.paragon@gmail.com> | 2021-10-10 14:25:56 +0300 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-10-20 01:13:04 +0000 |
commit | 73c82fcd9ce790393806798f18e841c21d244a0c (patch) | |
tree | 1a06f58533b040b886e3da42f3242dd1da6cd892 /media-libs/netpbm/files | |
parent | media-libs/netpbm: add v10.86.24 (diff) | |
download | gentoo-73c82fcd9ce790393806798f18e841c21d244a0c.tar.gz gentoo-73c82fcd9ce790393806798f18e841c21d244a0c.tar.bz2 gentoo-73c82fcd9ce790393806798f18e841c21d244a0c.zip |
media-libs/netpbm: drop v10.86.22
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Viorel Munteanu <ceamac.paragon@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/22542
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/netpbm/files')
-rw-r--r-- | media-libs/netpbm/files/netpbm-10.86.21-format-security.patch | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/media-libs/netpbm/files/netpbm-10.86.21-format-security.patch b/media-libs/netpbm/files/netpbm-10.86.21-format-security.patch deleted file mode 100644 index a7afc259ff5c..000000000000 --- a/media-libs/netpbm/files/netpbm-10.86.21-format-security.patch +++ /dev/null @@ -1,18 +0,0 @@ -Fix compiling with `CFLAGS` `-Werror=format-security` -See also https://bugs.gentoo.org/517524 - ---- a/converter/ppm/ximtoppm.c -+++ b/converter/ppm/ximtoppm.c -@@ -117,9 +117,9 @@ - */ - header->bits_channel = atoi(a_head.bits_per_channel); - header->alpha_flag = atoi(a_head.alpha_channel); -- pm_asprintf(&header->author, a_head.author); -- pm_asprintf(&header->date, a_head.date); -- pm_asprintf(&header->program, a_head.program); -+ pm_asprintf(&header->author, "%s", a_head.author); -+ pm_asprintf(&header->date, "%s", a_head.date); -+ pm_asprintf(&header->program, "%s", a_head.program); - /* Do double checking for bakwards compatibility */ - if (header->npics == 0) - header->npics = 1; |