From f8bbe46bce7597304d10d106ae51af43af88ca66 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 16 May 2003 21:32:42 +0000 Subject: [PATCH] get all the strings! --- openbox/prop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbox/prop.c b/openbox/prop.c index 8677de07..c53f2503 100644 --- a/openbox/prop.c +++ b/openbox/prop.c @@ -294,7 +294,7 @@ gboolean prop_get_strings_locale(Window win, Atom prop, char ***ret) g_strfreev(*ret); /* free what we did so far */ break; /* the force is not strong with us */ } - p = strchr(p, '\0'); + p += strlen(p) + 1; } g_free(raw); if (i == num) @@ -328,7 +328,7 @@ gboolean prop_get_strings_utf8(Window win, Atom prop, char ***ret) p = raw; for (i = 0; i < num; ++i) { (*ret)[i] = g_strdup(p); - p = strchr(p, '\0'); + p += strlen(p) + 1; } g_free(raw); return TRUE; -- 2.39.2