We should not make deststring static since we count on it being fresh
and clean when entering test_RtlCopyString().
This commit is contained in:
parent
bc8007fb1a
commit
4e5b9efcf0
|
@ -479,7 +479,7 @@ static void test_RtlDuplicateUnicodeString(void)
|
|||
static void test_RtlCopyString(void)
|
||||
{
|
||||
static const char teststring[] = "Some Wild String";
|
||||
static char deststring[] = " ";
|
||||
char deststring[] = " ";
|
||||
STRING str;
|
||||
STRING deststr;
|
||||
|
||||
|
|
Loading…
Reference in New Issue