From a2aa26754b3b08a79dc286677929ed04c564f231 Mon Sep 17 00:00:00 2001 From: kevin Date: Mon, 25 Mar 2024 10:53:25 -0400 Subject: [PATCH] cwVariant.cpp : Fix bad initialization in _variantDescArray[] sentinel. --- cwVariant.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cwVariant.cpp b/cwVariant.cpp index 7c9f763..404d67e 100644 --- a/cwVariant.cpp +++ b/cwVariant.cpp @@ -46,7 +46,7 @@ namespace cw { kPtrVFl | kFloatVFl, "float_ptr", "p", sizeof(float) }, { kPtrVFl | kDoubleVFl, "double_ptr", "p", sizeof(double) }, - { 0, nullptr, 0 } + { 0, nullptr, nullptr, 0 } };