summaryrefslogtreecommitdiff
path: root/app-editors/pluma
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-01-21 02:09:25 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-01-21 02:09:25 +0000
commitafcb9236a72cf602364c28b9bde6648e4a7f1ca5 (patch)
tree9608aa2c881b2688207832334c938f0e38d5c71c /app-editors/pluma
parentd3419aa304ff2564036398be5e8ed4bdeaeaa007 (diff)
gentoo auto-resync : 21:01:2024 - 02:09:25
Diffstat (limited to 'app-editors/pluma')
-rw-r--r--app-editors/pluma/Manifest1
-rw-r--r--app-editors/pluma/files/pluma-1.26.0-fortify-source-3.patch24
2 files changed, 0 insertions, 25 deletions
diff --git a/app-editors/pluma/Manifest b/app-editors/pluma/Manifest
index d324093744c4..b6904e4f4073 100644
--- a/app-editors/pluma/Manifest
+++ b/app-editors/pluma/Manifest
@@ -1,4 +1,3 @@
-AUX pluma-1.26.0-fortify-source-3.patch 998 BLAKE2B 84536f238237d929e6af4362be3ee6c95329170efa2e862b93fce96ef7dd689732e2e4df4b533745254ebde7504b65b0b55c2cdcd817186738f67de889eeb5d3 SHA512 c5e4a56ecebaeb0bf58fc62daac0f4a0dd685ac758648672d1ed13c2abf51453e219aa0ce3c52e04386a80491fb4f43ed042ac32086f6eb6d73553e79ccf0575
DIST pluma-1.26.1.tar.xz 3824664 BLAKE2B e5ee5c2efeec90fb6733fac1077c870c79a386b3ab28d71a17929f144ecf9ae73ab66dc1a806504d7cb244bdd3c9ad63b7cccb5fb8f1f44b7b44a1076948a0e7 SHA512 bc4f621736d93df07fc2dc434a25c5a5acaf0d2c958eac43bd0061d4b664cae9b9eac1fffc47afa1509fd64b3c93a77ca62737428b034ca25997ebee432d5eb3
DIST pluma-1.27.0.tar.xz 3820196 BLAKE2B 877b1856154e79aade7b709b5da0584cb426f07d69305d98af6f9954b8934f99241b750c0322ca7418db69c6fac1b4a1b6d8ffc3e75b441ffa5760ec0cd1d1d3 SHA512 ce2ab6fb4f7cfa93b8b1c22a80b4a688f63f9ec61fd173c22684a9cb49a83551cc9e5ed45a04cec23683d85be059615d90abd7d6b7e4b3bf1b3d6287d4292f78
EBUILD pluma-1.26.1.ebuild 1929 BLAKE2B 58ec9b6abeb33286f21cf520b6c8c3f0dee58c9e6673aad6f011c2fd38bdbcf8267867713323d1354fa5c62f8e6eb53dbe3f8b43e386af3ab4e55e697ad93062 SHA512 62d42e7b7759f70c289fb2f6080352aa0bed713b20efd5d835ddf13c1679abbcd8280961aa765ba9106f4cc5a375f6e7b838f74b007368c6ae85756af6a064c4
diff --git a/app-editors/pluma/files/pluma-1.26.0-fortify-source-3.patch b/app-editors/pluma/files/pluma-1.26.0-fortify-source-3.patch
deleted file mode 100644
index 001d88081ce6..000000000000
--- a/app-editors/pluma/files/pluma-1.26.0-fortify-source-3.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-https://bugs.gentoo.org/903860
-https://github.com/mate-desktop/pluma/issues/664
-https://github.com/mate-desktop/pluma/pull/665
-https://github.com/mate-desktop/pluma/commit/8ca37beb259f7a62fef2005e888248ec880e44cd
-
-From 8ca37beb259f7a62fef2005e888248ec880e44cd Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Bal=C3=A1zs=20Dura-Kov=C3=A1cs?= <balping314@gmail.com>
-Date: Thu, 18 Aug 2022 17:44:41 +0200
-Subject: [PATCH] Fix out-of-bounds write
-
-Closes https://github.com/mate-desktop/pluma/issues/664
-
-The size of tempfont was one byte too short, so strcpy performed an out-of-bounds write of the terminating 0.
---- a/pluma/pluma-window.c
-+++ b/pluma/pluma-window.c
-@@ -318,7 +318,7 @@ pluma_window_key_press_event (GtkWidget *widget,
- g_strcanon (tempsize, "1234567890", '\0');
- g_strreverse (tempsize);
-
-- gchar tempfont [strlen (font)];
-+ gchar tempfont [strlen (font) + 1];
- strcpy (tempfont, font);
- tempfont [strlen (font) - strlen (tempsize)] = 0;
-