Fix a regression in r15404 causing people to experience artefacts and lost lock

parent d69c29d6
...@@ -408,7 +408,7 @@ static block_t *Block( access_t *p_access ) ...@@ -408,7 +408,7 @@ static block_t *Block( access_t *p_access )
ufds[0].fd = p_sys->i_handle; ufds[0].fd = p_sys->i_handle;
ufds[0].events = POLLIN; ufds[0].events = POLLIN;
ufds[1].fd = p_sys->i_frontend_handle; ufds[1].fd = p_sys->i_frontend_handle;
ufds[1].events = POLLOUT; ufds[1].events = POLLPRI;
/* We'll wait 0.5 second if nothing happens */ /* We'll wait 0.5 second if nothing happens */
/* Find if some data is available */ /* Find if some data is available */
......
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