guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.
commit 1218a4eb7327051c8c1393fd85d61970d3f9ebeb
Author: Noé Lopez <[email protected]>
AuthorDate: Thu Apr 23 18:32:00 2026 +0200
gnu: gdm: Fix memory error from patch.
* gnu/packages/patches/gdm-default-session.patch:
Use allocated string instead of static.
Change-Id: I569fde7200afc7c6da93df2caa9e6b2e6647ead0
Signed-off-by: Noé Lopez <[email protected]>
---
gnu/packages/gnome.scm | 1 -
gnu/packages/patches/gdm-default-session.patch | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index fa08900f0f..ef749c104a 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9399,7 +9399,6 @@ logo='~a'~%" icon))))))
(list accountsservice
at-spi2-core
check ; for testing
- dbus
dconf ; for wrap-accessibility-dependencies
egl-wayland
elogind
diff --git a/gnu/packages/patches/gdm-default-session.patch
b/gnu/packages/patches/gdm-default-session.patch
index aef5796d45..cdadd9ad24 100644
--- a/gnu/packages/patches/gdm-default-session.patch
+++ b/gnu/packages/patches/gdm-default-session.patch
@@ -82,7 +82,7 @@ index df8e377b7..e80acf7e4 100644
- g_ptr_array_add (dirs_search_array, session_dir);
- }
+ g_ptr_array_add (dirs_search_array,
-+
"/run/current-system/profile/share/wayland-sessions/");
++ g_strdup
("/run/current-system/profile/share/wayland-sessions/"));
}
#endif
#endif