Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions srcpkgs/gtkpod/patches/fix-multibyte-character-segfault.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- a/libgtkpod/misc.c
+++ b/libgtkpod/misc.c
@@ -475,7 +475,7 @@ fuzzy_skip_prefix(const gchar *name) {

g_return_val_if_fail (csfk, 0);

- tempStr = g_utf8_collate_key(cleanStr, csfk->length);
+ tempStr = g_utf8_collate_key(cleanStr, -1);
if (strcmp(tempStr, csfk->key) == 0) {
/* Found article, bump pointers ahead appropriate distance
*/
2 changes: 1 addition & 1 deletion srcpkgs/gtkpod/template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Template file for 'gtkpod'
pkgname=gtkpod
version=2.1.5
revision=7
revision=8
build_style=gnu-configure
configure_args="--disable-static"
hostmakedepends="flex intltool pkg-config glib"
Expand Down
Loading