# HG changeset patch # User Mike Becker # Date 1763577725 -3600 # Node ID cd53fb8703c102945f57976749c99cd3a9407d32 # Parent 1a982f6f24075b362acb23388a1b6a29ed90226d fix MSVC compilation error diff -r 1a982f6f2407 -r cd53fb8703c1 src/list.c --- a/src/list.c Tue Nov 18 17:55:49 2025 +0100 +++ b/src/list.c Wed Nov 19 19:42:05 2025 +0100 @@ -1030,7 +1030,7 @@ CxIterator src_iter = cxListIterator(src); CxIterator other_iter = cxListIterator(other); while (cxIteratorValid(src_iter) || cxIteratorValid(other_iter)) { - void *src_elem, *other_elem; + void *src_elem = NULL, *other_elem = NULL; int d; if (!cxIteratorValid(src_iter)) { other_elem = cxIteratorCurrent(other_iter);