# HG changeset patch # User Matti Hamalainen # Date 1192850276 -10800 # Node ID 860392c82b29be080fabcee0d9a219ef1878d22c # Parent c597262d6d50e9aa8b844388a77d8a5d5ce53a38 Fix the UTF-8 handling of tuple (empty)? check. diff -r c597262d6d50 -r 860392c82b29 src/audacious/tuple_compiler.c --- a/src/audacious/tuple_compiler.c Sat Oct 20 06:16:34 2007 +0300 +++ b/src/audacious/tuple_compiler.c Sat Oct 20 06:17:56 2007 +0300 @@ -710,7 +710,7 @@ while (result && *tmps2 != '\0') { gunichar uc = g_utf8_get_char(tmps2); if (g_unichar_isspace(uc)) - g_utf8_next_char(tmps2); + tmps2 = g_utf8_next_char(tmps2); else result = FALSE; }