1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

clean: else became a NOP

This commit is contained in:
Chunho Lee 2021-06-09 08:10:22 +01:00 committed by Andy Green
parent 896a2e09fc
commit 1c935dff79

View file

@ -1377,7 +1377,7 @@ lws_create_context(const struct lws_context_creation_info *info)
lwsl_err("%s: policy set failed\n", __func__);
goto bail_libuv_aware;
}
} else
}
#else
if (context->pss_policies) {
/* user code set the policy objects directly, no parsing step */
@ -1387,9 +1387,8 @@ lws_create_context(const struct lws_context_creation_info *info)
lwsl_err("%s: policy set failed\n", __func__);
goto bail_libuv_aware;
}
} //else
}
#endif
// lws_create_vhost(context, info);
#endif
lws_context_init_extensions(info, context);