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

coverity 83678 unused assignment

Signed-off-by: Andy Green <andy.green@linaro.org>
This commit is contained in:
Andy Green 2014-11-30 12:40:32 +08:00
parent 59800b764e
commit 5549998ac3

View file

@ -144,11 +144,8 @@ lws_issue_raw_ext_access(struct libwebsocket *wsi,
}
/* always either sent it all or privately buffered */
if (wsi->u.ws.clean_buffer) {
eff_buf.token_len = n;
if (wsi->u.ws.clean_buffer)
len = n;
}
}
lwsl_parser("written %d bytes to client\n", n);