Copy link
@gvanem

gvanem Sep 13, 2023

Contributor

clang-cl warns here:

tool_cb_wrt.c(290,23): warning: array index 3 is past the end of the array (that has type 'WCHAR[3]' (aka 'unsigned short[3]'))
      [-Warray-bounds]
          DEBUGASSERT(prefix[3] == L'\0');
                      ^      ~

Perhaps you mean DEBUGASSERT(prefix[2] == L'\0'); as the comment indicates?