Commit 4e5b9efc authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

We should not make deststring static since we count on it being fresh

and clean when entering test_RtlCopyString().
parent bc8007fb
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment