[mod_wstunnel] fix NULL ptr deref

fix NULL ptr deref if wstunnel.server configured inside a conditional
and not in global scope

(thx nicorac)

x-ref:
  "https://redmine.lighttpd.net/boards/2/topics/7600"
personal/stbuehler/mod-csrf
Glenn Strauss 2017-09-30 00:11:59 -04:00
parent a156fdbc7b
commit 46719b8925
1 changed files with 3 additions and 1 deletions

View File

@ -381,7 +381,9 @@ static void mod_wstunnel_patch_connection(server *srv, connection *con, plugin_d
if (buffer_is_equal_string(du->key, CONST_STR_LEN("wstunnel.server"))) {
PATCH_GW(exts);
/*PATCH_GW(exts_auth);*//*(wstunnel can not act as authorizer)*/
/*(wstunnel can not act as authorizer,
* but p->conf.exts_auth must not be NULL)*/
PATCH_GW(exts_auth);
PATCH_GW(exts_resp);
} else if (buffer_is_equal_string(du->key, CONST_STR_LEN("wstunnel.debug"))) {
PATCH_GW(debug);