initialize client field to NULL in wm_treenode_new

This commit is contained in:
Akos Horvath 2023-07-05 20:38:46 +02:00
parent 72663656e4
commit f4aa263368

View File

@ -16,6 +16,7 @@ TreeNode wm_treenode_new(NodeType type, TreeNode *parent)
node_id++;
node.id = node_id;
node.client = NULL;
return node;
}