Fix segfault in border.c

This commit is contained in:
Drew DeVault 2016-08-02 07:35:25 -04:00
parent 18602367f1
commit 31ce010861

View file

@ -233,6 +233,10 @@ static char *generate_container_title(swayc_t *container) {
title = generate_container_title(child);
}
if (!title) {
title = "(null)";
}
len = strlen(name) + strlen(title) + 1;
if (i < container->children->length-1) {
len++;