parent
9dc4df81ea
commit
a3dcee35f3
|
@ -92,6 +92,10 @@ bool tree_restore(const char *path, xcb_get_geometry_reply_t *geometry) {
|
||||||
|
|
||||||
DLOG("appended tree, using new root\n");
|
DLOG("appended tree, using new root\n");
|
||||||
croot = TAILQ_FIRST(&(croot->nodes_head));
|
croot = TAILQ_FIRST(&(croot->nodes_head));
|
||||||
|
if (!croot) {
|
||||||
|
/* tree_append_json failed. Continuing here would segfault. */
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
DLOG("new root = %p\n", croot);
|
DLOG("new root = %p\n", croot);
|
||||||
Con *out = TAILQ_FIRST(&(croot->nodes_head));
|
Con *out = TAILQ_FIRST(&(croot->nodes_head));
|
||||||
DLOG("out = %p\n", out);
|
DLOG("out = %p\n", out);
|
||||||
|
|
Loading…
Reference in New Issue