Browse Source

Fix error handling when parsing the header

pull/820/head
Max Lv 8 years ago
parent
commit
2ae356a1bb
1 changed files with 1 additions and 1 deletions
  1. 2
      src/local.c

2
src/local.c

@ -548,7 +548,7 @@ static void server_recv_cb(EV_P_ ev_io *w, int revents)
else if (p == tls_protocol->default_port)
ret = tls_protocol->parse_packet(buf->array + 3 + abuf->len,
buf->len - 3 - abuf->len, &hostname);
if (ret == -1 || ret == -2) {
if (ret == -1) {
server->stage = 2;
bfree(abuf);
return;

Loading…
Cancel
Save