On Tue Jul 8 16:24:38 2025 +0000, Connor McAdams wrote:
This is a `BYTE` type buffer being used to store a wide character string return value, so I'm pretty sure what you're doing here would only set half of the character value to NULL. I think the better way to do this is to just do:
memset(buffer, 0, sizeof(buffer));
Like the previous test.
Oh right, these are wide strings. Thanks!