summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-05-23 18:56:33 +0000
committerDana Jansens <danakj@orodu.net>2003-05-23 18:56:33 +0000
commitf68eb1fc250b13a473d825ac5c69b6d5e28b9595 (patch)
treef8a9bb3599a76df8402bc296e71237004d6b14f6
parentb46222c3d9b4b638b14647871d41249db9726422 (diff)
validate utf8 strings before using them
-rw-r--r--openbox/prop.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/openbox/prop.c b/openbox/prop.c
index c53f2503..44d0f2bf 100644
--- a/openbox/prop.c
+++ b/openbox/prop.c
@@ -306,12 +306,17 @@ gboolean prop_get_strings_locale(Window win, Atom prop, char ***ret)
gboolean prop_get_string_utf8(Window win, Atom prop, char **ret)
{
char *raw;
+ char *str;
guint num;
if (get_all(win, prop, prop_atoms.utf8, 8, (guchar**)&raw, &num)) {
- *ret = g_strndup(raw, num); /* grab the first string from the list */
+ str = g_strndup(raw, num); /* grab the first string from the list */
g_free(raw);
- return TRUE;
+ if (g_utf8_validate(str, -1, NULL)) {
+ *ret = str;
+ return TRUE;
+ }
+ g_free(str);
}
return FALSE;
}
@@ -327,7 +332,10 @@ gboolean prop_get_strings_utf8(Window win, Atom prop, char ***ret)
p = raw;
for (i = 0; i < num; ++i) {
- (*ret)[i] = g_strdup(p);
+ if (g_utf8_validate(p, -1, NULL))
+ (*ret)[i] = g_strdup(p);
+ else
+ (*ret)[i] = g_strdup("");
p += strlen(p) + 1;
}
g_free(raw);