mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
Mark a freshly-allocated node of type N_ERROR rather than N_FREE.
This commit is contained in:
@@ -231,7 +231,7 @@ alloc_expr_node(int *r)
|
||||
if (ExprNodesUsed > ExprNodesHighWater) ExprNodesHighWater = ExprNodesUsed;
|
||||
node = expr_node_free_list;
|
||||
expr_node_free_list = node->child;
|
||||
node->type = N_FREE;
|
||||
node->type = N_ERROR;
|
||||
node->child = NULL;
|
||||
node->sibling = NULL;
|
||||
node->num_kids = 0;
|
||||
|
||||
Reference in New Issue
Block a user