# HG changeset patch # User Mike Becker # Date 1746351973 -7200 # Node ID 25108c15e2d43e34d4b3c31d2aaec30ae357403f # Parent 5012728b9e910ada01e22848efe971120d2ec777 critical: fixes uninitialized memory in tree iterator regression relates to #632 diff -r 5012728b9e91 -r 25108c15e2d4 src/tree.c --- a/src/tree.c Sun May 04 11:30:10 2025 +0200 +++ b/src/tree.c Sun May 04 11:46:13 2025 +0200 @@ -305,7 +305,7 @@ if (children == NULL) { // search for the next node - void *next; + void *next = NULL; cx_tree_iter_search_next: // check if there is a sibling, but only if we are not a (subtree-)root if (iter->exiting) {