Commit 17480acb authored by Alexandre Julliard's avatar Alexandre Julliard

Initialize the dummy char we send down the pipe to make valgrind

happy.
parent e7a44d18
......@@ -108,7 +108,7 @@ static void do_signal( struct handler *handler )
{
if (!handler->pending)
{
char dummy;
char dummy = 0;
handler->pending = 1;
write( handler->pipe_write, &dummy, 1 );
}
......
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