[Pkg-xfce-commits] r9455 - in /goodies/trunk/lightdm/debian: changelog patches/07-Remove-unused-unititialized-file-descriptors-could-c.patch patches/series

Yves-Alexis Perez corsac at moszumanska.debian.org
Mon Jul 11 11:24:48 UTC 2016


Author: corsac
Date: Mon Jul 11 11:24:48 2016
New Revision: 9455

URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=9455
Log:
* debian/patches
  - 05_debianize-pam-files added, disable autologin by default for root user
    (as with GDM3).
  - 07-Remove-unused-unititialized-file-descriptors-could-c added,
    cherry-picked from upstream. Avoid closing stdin which triggers a bug in
    dbus preventing dbus-daemon to start.                     closes: #829557

Added:
    goodies/trunk/lightdm/debian/patches/07-Remove-unused-unititialized-file-descriptors-could-c.patch
Modified:
    goodies/trunk/lightdm/debian/changelog
    goodies/trunk/lightdm/debian/patches/series

Modified: goodies/trunk/lightdm/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm/debian/changelog?rev=9455&op=diff
==============================================================================
--- goodies/trunk/lightdm/debian/changelog	(original)
+++ goodies/trunk/lightdm/debian/changelog	Mon Jul 11 11:24:48 2016
@@ -1,7 +1,11 @@
 lightdm (1.18.2-2) UNRELEASED; urgency=medium
 
-  * debian/patches/05_debianize-pam-files.patch:
-    - disable autologin by default for root user (as with GDM3).
+  * debian/patches
+    - 05_debianize-pam-files added, disable autologin by default for root user
+      (as with GDM3).
+    - 07-Remove-unused-unititialized-file-descriptors-could-c added,
+      cherry-picked from upstream. Avoid closing stdin which triggers a bug in
+      dbus preventing dbus-daemon to start.                     closes: #829557
   * debian/01_debian.conf:
     - update section name from SeatDefaults to Seat:*.
 

Added: goodies/trunk/lightdm/debian/patches/07-Remove-unused-unititialized-file-descriptors-could-c.patch
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm/debian/patches/07-Remove-unused-unititialized-file-descriptors-could-c.patch?rev=9455&op=file
==============================================================================
--- goodies/trunk/lightdm/debian/patches/07-Remove-unused-unititialized-file-descriptors-could-c.patch	(added)
+++ goodies/trunk/lightdm/debian/patches/07-Remove-unused-unititialized-file-descriptors-could-c.patch	Mon Jul 11 11:24:48 2016
@@ -0,0 +1,37 @@
+From 3bdea09e14cbb1cbfc234679d09e2188ff30b9cd Mon Sep 17 00:00:00 2001
+From: Robert Ancell <robert.ancell at canonical.com>
+Date: Wed, 29 Jun 2016 15:16:05 +1200
+Subject: [PATCH] Remove unused unititialized file descriptors - could cause
+ stdin to be closed
+
+---
+ src/greeter-session.c | 6 ------
+ 1 file changed, 6 deletions(-)
+
+diff --git a/src/greeter-session.c b/src/greeter-session.c
+index 862253a..8ebac6f 100644
+--- a/src/greeter-session.c
++++ b/src/greeter-session.c
+@@ -21,10 +21,6 @@ struct GreeterSessionPrivate
+ {
+     /* Greeter running inside this session */
+     Greeter *greeter;
+-
+-    /* Communication channels to communicate with */
+-    int to_greeter_input;
+-    int from_greeter_output;
+ };
+ 
+ G_DEFINE_TYPE (GreeterSession, greeter_session, SESSION_TYPE);
+@@ -108,8 +104,6 @@ greeter_session_finalize (GObject *object)
+     GreeterSession *self = GREETER_SESSION (object);
+ 
+     g_clear_object (&self->priv->greeter);
+-    close (self->priv->to_greeter_input);
+-    close (self->priv->from_greeter_output);
+ 
+     G_OBJECT_CLASS (greeter_session_parent_class)->finalize (object);
+ }
+-- 
+2.8.1
+

Modified: goodies/trunk/lightdm/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm/debian/patches/series?rev=9455&op=diff
==============================================================================
--- goodies/trunk/lightdm/debian/patches/series	(original)
+++ goodies/trunk/lightdm/debian/patches/series	Mon Jul 11 11:24:48 2016
@@ -2,3 +2,4 @@
 02_fix-apparmor-profile.patch
 05_debianize-pam-files.patch
 06_change-user-dirs.patch
+07-Remove-unused-unititialized-file-descriptors-could-c.patch




More information about the Pkg-xfce-commits mailing list