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

ss: smd: no need to log msg alloc rejection

This commit is contained in:
Andy Green 2020-07-07 15:13:37 +01:00
parent c410956a31
commit e09430c48d

View file

@ -285,7 +285,8 @@ lws_ss_smd_tx_cb(lws_sorted_usec_list_t *sul)
_class = (lws_smd_class_t)lws_ser_ru64be(buf);
p = lws_smd_msg_alloc(h->context, _class, len - LWS_SMD_SS_RX_HEADER_LEN);
if (!p) {
lwsl_notice("%s: failed to alloc\n", __func__);
// this can be rejected if nobody listening for this class
//lwsl_notice("%s: failed to alloc\n", __func__);
return;
}