Commit d0599921 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

wineoss: Properly initialize pollfd structure (Coverity).

parent 6f99f196
......@@ -642,7 +642,7 @@ static DWORD WINAPI midRecThread(LPVOID arg)
TRACE("Thread startup\n");
pfd.fd = midiSeqFD;
pfd.fd = POLLIN;
pfd.events = POLLIN;
while(!end_thread) {
TRACE("Thread loop\n");
......
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