# HG changeset patch # User Mike Becker # Date 1758804566 -7200 # Node ID 395ad9f8da440eff254e73be143f8a19ccc1dce0 # Parent 7b23c6db9500a7447e58621e1364c7d48bf6e604 fix initialization of cxDefaultAllocator for MSVC diff -r 7b23c6db9500 -r 395ad9f8da44 src/allocator.c --- a/src/allocator.c Thu Sep 25 14:30:28 2025 +0200 +++ b/src/allocator.c Thu Sep 25 14:49:26 2025 +0200 @@ -73,7 +73,7 @@ NULL }; const CxAllocator * const cxStdlibAllocator = &cx_stdlib_allocator; -const CxAllocator * cxDefaultAllocator = cxStdlibAllocator; +const CxAllocator * cxDefaultAllocator = &cx_stdlib_allocator; int cx_reallocate_( void **mem,