vhost: also free per-vhost protocols list even when no PLUGINS
This commit is contained in:
parent
052a685435
commit
7832b236a4
1 changed files with 8 additions and 1 deletions
|
@ -405,8 +405,10 @@ lws_create_vhost(struct lws_context *context,
|
|||
|
||||
if (info->options & LWS_SERVER_OPTION_EXPLICIT_VHOSTS)
|
||||
vh->protocols = lwsp;
|
||||
else
|
||||
else {
|
||||
vh->protocols = info->protocols;
|
||||
free(lwsp);
|
||||
}
|
||||
|
||||
vh->same_vh_protocol_list = (struct lws **)
|
||||
lws_zalloc(sizeof(struct lws *) * vh->count_protocols);
|
||||
|
@ -1033,6 +1035,11 @@ lws_context_destroy2(struct lws_context *context)
|
|||
#ifdef LWS_WITH_PLUGINS
|
||||
if (context->plugin_list)
|
||||
lws_free((void *)vh->protocols);
|
||||
#else
|
||||
if (vh->options & LWS_SERVER_OPTION_EXPLICIT_VHOSTS)
|
||||
lws_free((void *)vh->protocols);
|
||||
#endif
|
||||
#ifdef LWS_WITH_PLUGINS
|
||||
#ifndef LWS_NO_EXTENSIONS
|
||||
if (context->plugin_extension_count)
|
||||
lws_free((void *)vh->extensions);
|
||||
|
|
Loading…
Add table
Reference in a new issue