mirror of
https://github.com/curl/curl.git
synced 2025-03-31 16:00:35 +08:00
multi: fix multi_sock handling of select_bits
- OR the event bitmask to data->state.select_bits instead of overwriting them. They are cleared again on use. Reported-by: 5533asdg on github Fixes #12971 Closes #12972
This commit is contained in:
parent
93d8e3564e
commit
f274fc5c68
@ -3243,7 +3243,7 @@ static CURLMcode multi_socket(struct Curl_multi *multi,
|
||||
|
||||
if(data->conn && !(data->conn->handler->flags & PROTOPT_DIRLOCK))
|
||||
/* set socket event bitmask if they're not locked */
|
||||
data->state.select_bits = (unsigned char)ev_bitmask;
|
||||
data->state.select_bits |= (unsigned char)ev_bitmask;
|
||||
|
||||
Curl_expire(data, 0, EXPIRE_RUN_NOW);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user