From 4e5b9efcf0d3730a44ff0b379f1b03e9f3fa8809 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 5 May 2004 01:38:24 +0000 Subject: [PATCH] We should not make deststring static since we count on it being fresh and clean when entering test_RtlCopyString(). --- dlls/ntdll/tests/rtlstr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/tests/rtlstr.c b/dlls/ntdll/tests/rtlstr.c index eab3c722d1..ad2584999d 100644 --- a/dlls/ntdll/tests/rtlstr.c +++ b/dlls/ntdll/tests/rtlstr.c @@ -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; -- 2.32.0.93.g670b81a890