From f42085429732be17db228439f611a6fa50bd72ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Vavru=C5=A1a?= <marek.vavrusa@nic.cz> Date: Wed, 1 Apr 2015 17:09:02 +0200 Subject: [PATCH] daemon/io: tcp cleanup --- daemon/io.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/daemon/io.c b/daemon/io.c index 88607dfdc..666a39933 100644 --- a/daemon/io.c +++ b/daemon/io.c @@ -106,7 +106,6 @@ static void tcp_unbind_handle(uv_handle_t *handle) { uv_read_stop((uv_stream_t *)handle); buf_free(handle); - uv_close(handle, NULL); } static void tcp_send(uv_handle_t *handle, const knot_pkt_t *answer) @@ -129,7 +128,7 @@ static void tcp_recv(uv_stream_t *handle, ssize_t nread, const uv_buf_t *buf) /* Check the incoming wire length (malformed, EOF or error). */ if (nread < (ssize_t) sizeof(uint16_t)) { tcp_unbind_handle((uv_handle_t *)handle); - free(handle); + uv_close((uv_handle_t *)handle, (uv_close_cb) free); return; } @@ -165,13 +164,12 @@ static void tcp_accept(uv_stream_t *master, int status) uv_tcp_init(master->loop, client); client->data = buf_alloc(); if (client->data == NULL) { - tcp_unbind_handle((uv_handle_t *)client); free(client); return; } if (uv_accept(master, (uv_stream_t*)client) != 0) { - tcp_unbind_handle((uv_handle_t *)client); + buf_free((uv_handle_t *)client); free(client); return; } @@ -205,4 +203,5 @@ int tcp_bind(struct endpoint *ep, struct sockaddr *addr) void tcp_unbind(struct endpoint *ep) { tcp_unbind_handle((uv_handle_t *)&ep->tcp); + uv_close((uv_handle_t *)&ep->tcp, NULL); } -- GitLab