1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 05:40:46 +00:00

fixes invalid read if www is not specified (#28)

This commit is contained in:
Falk Werner 2019-04-25 20:06:54 +02:00 committed by GitHub
parent 3a7c064af7
commit f4180224b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,11 @@ static int wf_impl_server_protocol_callback(
size_t len)
{
struct lws_protocols const * ws_protocol = lws_get_protocol(wsi);
if (NULL == ws_protocol)
{
return 0;
}
struct wf_server_protocol * protocol = ws_protocol->user;
wf_impl_timeout_manager_check(&protocol->timeout_manager);