From 93fcc308b6ccede1aac72c883fc1942b8685895b Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Tue, 24 Feb 2026 18:57:34 +0900 Subject: [PATCH] fix sigsegv --- src/core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core.c b/src/core.c index 61ad58d..2f31676 100644 --- a/src/core.c +++ b/src/core.c @@ -328,6 +328,7 @@ int xl_parse(xemil_t* handle) { n->next = NULL; last->next = n; } + n->first_child = NULL; } else { xl_node_t* last = NULL; if(handle->root == NULL) handle->root = n;