server: Assert that a client has a stream open when processing a message
parent
33eda8c5d0
commit
683776cdf0
|
@ -651,7 +651,7 @@ static void on_client_event(struct stream* stream, enum stream_event event)
|
||||||
{
|
{
|
||||||
struct nvnc_client* client = stream->userdata;
|
struct nvnc_client* client = stream->userdata;
|
||||||
|
|
||||||
assert(client->net_stream == stream);
|
assert(client->net_stream && client->net_stream == stream);
|
||||||
|
|
||||||
if (event == STREAM_EVENT_REMOTE_CLOSED) {
|
if (event == STREAM_EVENT_REMOTE_CLOSED) {
|
||||||
log_debug("Client %p (%d) hung up\n", client, client->ref);
|
log_debug("Client %p (%d) hung up\n", client, client->ref);
|
||||||
|
|
Loading…
Reference in New Issue