Commit f818bbf6 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

tests: Don't initialize static variables to 0.

Static variables are initialized to 0 by default anyway. Signed-off-by: 's avatarFrancois Gouget <fgouget@free.fr> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 9f1dd9fc
......@@ -498,7 +498,6 @@ static int run_test( const char *name )
printf( "Fatal: test '%s' does not exist.\n", name );
exit_process(1);
}
successes = failures = todo_successes = todo_failures = 0;
tls_index=TlsAlloc();
current_test = test;
test->func();
......
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