all repos — openbox @ f8bbe46bce7597304d10d106ae51af43af88ca66

openbox fork - make it a bit more like ryudo

get all the strings!
Dana Jansens danakj@orodu.net
commit

f8bbe46bce7597304d10d106ae51af43af88ca66

parent

f17b225daadb483b8736dc0e57a9def68e770ae9

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M openbox/prop.copenbox/prop.c

@@ -294,7 +294,7 @@ if (!(*ret)[i]) {

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 @@

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;