summaryrefslogtreecommitdiff
path: root/xfce-extra/xfce4-notifyd/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-01-28 20:52:36 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-01-28 20:52:36 +0000
commitbdf6e70da7a28f45617c02a251bb6b3844202bc5 (patch)
treecf66e5dcf53b2ee6842fd3ff4d24d52aa30cfebc /xfce-extra/xfce4-notifyd/files
parentd414c993cafd9e31a370c4a5aae042c710df2419 (diff)
gentoo auto-resync : 28:01:2023 - 20:52:36
Diffstat (limited to 'xfce-extra/xfce4-notifyd/files')
-rw-r--r--xfce-extra/xfce4-notifyd/files/xfce4-notifyd-0.6.4-appinfo-crash.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/xfce-extra/xfce4-notifyd/files/xfce4-notifyd-0.6.4-appinfo-crash.patch b/xfce-extra/xfce4-notifyd/files/xfce4-notifyd-0.6.4-appinfo-crash.patch
deleted file mode 100644
index 5ca1cbda8e53..000000000000
--- a/xfce-extra/xfce4-notifyd/files/xfce4-notifyd-0.6.4-appinfo-crash.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From ddf469fe567f1c2f17013f3baa9bd3721cdd32a5 Mon Sep 17 00:00:00 2001
-From: Guido Falsi <mad@madpilot.net>
-Date: Fri, 2 Sep 2022 21:24:34 +0200
-Subject: [PATCH] Fix segfault crash.
-
----
- common/xfce-notify-log.c | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/common/xfce-notify-log.c b/common/xfce-notify-log.c
-index d42dc1e..7ccfd42 100644
---- a/common/xfce-notify-log.c
-+++ b/common/xfce-notify-log.c
-@@ -149,7 +149,9 @@ notify_get_from_desktop_file (const gchar *desktop_file, const gchar *key)
-
- match = matches[0];
- appinfo = g_desktop_app_info_new (match[0]);
-- value = notify_read_from_desktop_file (g_desktop_app_info_get_filename (appinfo), key);
-+ if (appinfo != NULL) {
-+ value = notify_read_from_desktop_file (g_desktop_app_info_get_filename (appinfo), key);
-+ }
-
- for (gchar ***p = matches; *p != NULL; p++)
- g_strfreev (*p);
---
-GitLab
-