[Pkg-xfce-commits] r8640 - in /goodies/trunk/lightdm/debian: changelog patches/04_fix-double-free-configuration-key-source.patch patches/series

Yves-Alexis Perez corsac at moszumanska.debian.org
Wed Oct 8 20:16:00 UTC 2014


Author: corsac
Date: Wed Oct  8 20:15:59 2014
New Revision: 8640

URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=8640
Log:
* debian/patches:
  - 04_fix-double-free-configuration-key-source added, fix crash when
    key sources are defined twice in config files.            closes: #762211

Added:
    goodies/trunk/lightdm/debian/patches/04_fix-double-free-configuration-key-source.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=8640&op=diff
==============================================================================
--- goodies/trunk/lightdm/debian/changelog	(original)
+++ goodies/trunk/lightdm/debian/changelog	Wed Oct  8 20:15:59 2014
@@ -1,3 +1,11 @@
+lightdm (1.10.2-3) UNRELEASED; urgency=medium
+
+  * debian/patches:
+    - 04_fix-double-free-configuration-key-source added, fix crash when
+      key sources are defined twice in config files.            closes: #762211
+
+ -- Yves-Alexis Perez <corsac at debian.org>  Wed, 08 Oct 2014 22:09:00 +0200
+
 lightdm (1.10.2-2) unstable; urgency=medium
 
   * debian/patches:

Added: goodies/trunk/lightdm/debian/patches/04_fix-double-free-configuration-key-source.patch
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm/debian/patches/04_fix-double-free-configuration-key-source.patch?rev=8640&op=file
==============================================================================
--- goodies/trunk/lightdm/debian/patches/04_fix-double-free-configuration-key-source.patch	(added)
+++ goodies/trunk/lightdm/debian/patches/04_fix-double-free-configuration-key-source.patch	Wed Oct  8 20:15:59 2014
@@ -0,0 +1,13 @@
+=== modified file 'common/configuration.c'
+--- lightdm/common/configuration.c	2014-09-07 23:28:20 +0000
++++ lightdm/common/configuration.c	2014-10-08 19:52:42 +0000
+@@ -311,7 +311,7 @@
+ {
+     config->priv = G_TYPE_INSTANCE_GET_PRIVATE (config, CONFIGURATION_TYPE, ConfigurationPrivate);
+     config->priv->key_file = g_key_file_new ();
+-    config->priv->key_sources = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
++    config->priv->key_sources = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
+ }
+ 
+ static void
+

Modified: goodies/trunk/lightdm/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm/debian/patches/series?rev=8640&op=diff
==============================================================================
--- goodies/trunk/lightdm/debian/patches/series	(original)
+++ goodies/trunk/lightdm/debian/patches/series	Wed Oct  8 20:15:59 2014
@@ -1,3 +1,4 @@
 01_set-default-path.patch
 02_fix-apparmor-profile.patch
+04_fix-double-free-configuration-key-source.patch
 05_debianize-pam-files.patch




More information about the Pkg-xfce-commits mailing list