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 b3bff76a73
commit af2067365e

View file

@ -1385,7 +1385,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 */
@ -1395,9 +1395,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);