diff options
Diffstat (limited to 'meta/recipes-graphics/menu-cache/files/Fix-segfault.patch')
-rw-r--r-- | meta/recipes-graphics/menu-cache/files/Fix-segfault.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-graphics/menu-cache/files/Fix-segfault.patch b/meta/recipes-graphics/menu-cache/files/Fix-segfault.patch new file mode 100644 index 0000000000..74a04074ec --- /dev/null +++ b/meta/recipes-graphics/menu-cache/files/Fix-segfault.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | From a497ea6aae3994b7f6527ef7599dd95baf2ad841 Mon Sep 17 00:00:00 2001 | ||
2 | From: Laurentiu Palcu <laurentiu.palcu@intel.com> | ||
3 | Date: Mon, 29 Apr 2013 12:04:20 +0300 | ||
4 | Subject: [PATCH] Fix segfault | ||
5 | |||
6 | Apparently, g_io_channel_unref() was called twice: once in the | ||
7 | menu-cache's on_client_closed() callback and once from the finalize | ||
8 | function, g_io_unix_finalize()/g_io_win32_finalize(), which is called | ||
9 | anyway when the source is removed. | ||
10 | |||
11 | Upstream-Status: Pending | ||
12 | Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> | ||
13 | --- | ||
14 | menu-cache-daemon/menu-cached.c | 1 - | ||
15 | 1 file changed, 1 deletion(-) | ||
16 | |||
17 | diff --git a/menu-cache-daemon/menu-cached.c b/menu-cache-daemon/menu-cached.c | ||
18 | index 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 | -- | ||
30 | 1.7.9.5 | ||
31 | |||