Plug a memleak, from upstream.

This commit is contained in:
ajacoutot 2011-07-01 23:30:33 +00:00
parent 11a6bfcf8a
commit bbe6bd614a
2 changed files with 19 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.1.1.1 2011/06/16 10:07:57 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.2 2011/07/01 23:30:33 ajacoutot Exp $
SHARED_ONLY= Yes
@ -6,6 +6,7 @@ COMMENT= GNOME control center
GNOME_PROJECT= gnome-control-center
GNOME_VERSION= 3.0.2
REVISION= 0
SHARED_LIBS += gnome-control-center 0.0 # 1.0

View File

@ -0,0 +1,17 @@
$OpenBSD: patch-panels_keyboard_cc-keyboard-item_c,v 1.1 2011/07/01 23:30:33 ajacoutot Exp $
From a6d3ad6af357731da213695ac37e04afc8a79448 Mon Sep 17 00:00:00 2001
From: Florian Müllner <fmuellner@gnome.org>
Date: Wed, 29 Jun 2011 04:12:10 +0000
Subject: keyboard: Fix a small memory leak
--- panels/keyboard/cc-keyboard-item.c.orig Fri Apr 29 10:40:29 2011
+++ panels/keyboard/cc-keyboard-item.c Sat Jul 2 01:22:46 2011
@@ -410,6 +410,7 @@ binding_changed (GSettings *settings,
value = g_settings_get_string (item->settings, item->key);
item->editable = g_settings_is_writable (item->settings, item->key);
_set_binding (item, value, FALSE);
+ g_free (value);
g_object_notify (G_OBJECT (item), "binding");
}