mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
Problem: ws_engine leaks memory if Sec-WebSocket-Protocol header passed multiple times
Solution: ensure it's passed only once
This commit is contained in:
parent
d280c44fe0
commit
b02bdd566a
@ -865,6 +865,10 @@ bool zmq::ws_engine_t::client_handshake ()
|
||||
strcpy_s (_websocket_accept, _header_value);
|
||||
else if (strcasecmp ("Sec-WebSocket-Protocol", _header_name)
|
||||
== 0) {
|
||||
if (_mechanism) {
|
||||
_client_handshake_state = client_handshake_error;
|
||||
break;
|
||||
}
|
||||
if (select_protocol (_header_value))
|
||||
strcpy_s (_websocket_protocol, _header_value);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user