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

Last clumsy act of consideration: jump beyond if

This commit is contained in:
Andrew Canaday 2015-12-02 15:27:37 -05:00
parent 9a6d16d88c
commit 9616c9a8e6

View file

@ -592,8 +592,8 @@ drain:
} while (more);
pending = lws_ssl_pending(wsi);
handle_pending:
if (pending) {
handle_pending:
pending = pending > sizeof(context->service_buffer)?
sizeof(context->service_buffer):pending;
goto read;