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

and clean when entering test_RtlCopyString().
This commit is contained in:
Francois Gouget 2004-05-05 01:38:24 +00:00 committed by Alexandre Julliard
parent bc8007fb1a
commit 4e5b9efcf0
1 changed files with 1 additions and 1 deletions

View File

@ -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;