summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/menu-cache/files/Fix-segfault.patch
diff options
context:
space:
mode:
authorMax Krummenacher <max.oss.09@gmail.com>2015-01-07 23:29:56 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-01-08 09:24:48 +0000
commitbb21377878b8724fcb3aa90296ffa2b7e188a07b (patch)
tree8c1c801eb04a2010d70003dbb554d93e625ae1f9 /meta/recipes-graphics/menu-cache/files/Fix-segfault.patch
parent6450281c6b785aa7c20e99c010fc7a5e3c5ac79a (diff)
downloadpoky-bb21377878b8724fcb3aa90296ffa2b7e188a07b.tar.gz
menu-cache: update to 1.0.0
menu-cache depends on fmlib-extra and thus requires the split of the libfm recipe in version 1.2.3. This obsoletes Fix-segfault.patch. menu-cache license has been changed by the authors from GPL to LGPL: http://git.lxde.org/gitweb/?p=lxde/menu-cache.git;a=commit;h=7972913d8e47e4970b9aa70267cb87fe7eb3a8b4 http://git.lxde.org/gitweb/?p=lxde/menu-cache.git;a=commit;h=08fe520c52a79d425504ba631afbea5fd62cc735 (From OE-Core rev: a356da6094982cc76b4e742e17e556094fb3e38a) Signed-off-by: Max Krummenacher <max.oss.09@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/menu-cache/files/Fix-segfault.patch')
-rw-r--r--meta/recipes-graphics/menu-cache/files/Fix-segfault.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-graphics/menu-cache/files/Fix-segfault.patch b/meta/recipes-graphics/menu-cache/files/Fix-segfault.patch
deleted file mode 100644
index 74a04074ec..0000000000
--- a/meta/recipes-graphics/menu-cache/files/Fix-segfault.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1From a497ea6aae3994b7f6527ef7599dd95baf2ad841 Mon Sep 17 00:00:00 2001
2From: Laurentiu Palcu <laurentiu.palcu@intel.com>
3Date: Mon, 29 Apr 2013 12:04:20 +0300
4Subject: [PATCH] Fix segfault
5
6Apparently, g_io_channel_unref() was called twice: once in the
7menu-cache's on_client_closed() callback and once from the finalize
8function, g_io_unix_finalize()/g_io_win32_finalize(), which is called
9anyway when the source is removed.
10
11Upstream-Status: Pending
12Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
13---
14 menu-cache-daemon/menu-cached.c | 1 -
15 1 file changed, 1 deletion(-)
16
17diff --git a/menu-cache-daemon/menu-cached.c b/menu-cache-daemon/menu-cached.c
18index e246bb4..a10b6db 100644
19--- a/menu-cache-daemon/menu-cached.c
20+++ b/menu-cache-daemon/menu-cached.c
21@@ -579,7 +579,6 @@ static void on_client_closed(gpointer user_data)
22 }
23 }
24 /* DEBUG("client closed"); */
25- g_io_channel_unref(ch);
26 }
27
28 static gboolean on_client_data_in(GIOChannel* ch, GIOCondition cond, gpointer user_data)
29--
301.7.9.5
31