Skip to content
Snippets Groups Projects
Commit 4e5b9efc authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard
Browse files

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

and clean when entering test_RtlCopyString().
parent bc8007fb
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment