all repos — openbox @ 693c88ca35a19b50ee52860800bcb861c035f7da

openbox fork - make it a bit more like ryudo

dont get a null at the end of the data, so use strndup
Dana Jansens danakj@orodu.net
commit

693c88ca35a19b50ee52860800bcb861c035f7da

parent

cb6840788b26fa1560f6dca93bd9af42d00c9b70

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

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

@@ -303,7 +303,7 @@ char *raw;

guint num; if (get_all(win, prop, prop_atoms.utf8, 8, (guchar**)&raw, &num)) { - *ret = g_strdup(raw); /* grab the first string from the list */ + *ret = g_strndup(raw, num); /* grab the first string from the list */ g_free(raw); return TRUE; }