From: Dana Jansens Date: Fri, 16 May 2003 21:32:42 +0000 (+0000) Subject: get all the strings! X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=f8bbe46bce7597304d10d106ae51af43af88ca66;p=chaz%2Fopenbox get all the strings! --- 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;