diff options
author | Naohiro Aota <naota@gentoo.org> | 2012-10-12 23:55:24 +0000 |
---|---|---|
committer | Naohiro Aota <naota@gentoo.org> | 2012-10-12 23:55:24 +0000 |
commit | 6ac48a23f77acbd96bc2afe919008ccceba7dcf0 (patch) | |
tree | ae41afd69348ab0414c07388dd2b94d0194be3df /app-dicts/gjiten/files | |
parent | Fix paths for prefix, bug 435718 by jlec. (diff) | |
download | gentoo-2-6ac48a23f77acbd96bc2afe919008ccceba7dcf0.tar.gz gentoo-2-6ac48a23f77acbd96bc2afe919008ccceba7dcf0.tar.bz2 gentoo-2-6ac48a23f77acbd96bc2afe919008ccceba7dcf0.zip |
Add patch to fix segfault. #292365
(Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
Diffstat (limited to 'app-dicts/gjiten/files')
-rw-r--r-- | app-dicts/gjiten/files/gjiten-2.6-pref.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app-dicts/gjiten/files/gjiten-2.6-pref.patch b/app-dicts/gjiten/files/gjiten-2.6-pref.patch new file mode 100644 index 000000000000..f06d833e87c3 --- /dev/null +++ b/app-dicts/gjiten/files/gjiten-2.6-pref.patch @@ -0,0 +1,13 @@ +diff --git a/src/pref.c b/src/pref.c +index 9c5e07d..6c0e13d 100644 +--- a/src/pref.c ++++ b/src/pref.c +@@ -271,7 +271,7 @@ static void up_dict(GtkWidget *button) { + gtk_list_store_swap(GTK_LIST_STORE(model), &iter, &tmpiter); + } + } +- g_free(treepath); ++ gtk_tree_path_free(treepath); + } + + |