Fixed a resource leak in case of an error level in the udaddy example.

Signed-off-by: Dotan Barak <[email protected]>
---
 examples/udaddy.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/examples/udaddy.c b/examples/udaddy.c
index 637306a..1534df5 100644
--- a/examples/udaddy.c
+++ b/examples/udaddy.c
@@ -547,7 +547,7 @@ static int run_server(void)
        ret = rdma_bind_addr(listen_id, test.src_addr);
        if (ret) {
                perror("udaddy: bind address failed");
-               return ret;
+               goto out;
        }
 
        ret = rdma_listen(listen_id, 0);
-- 
1.7.4.1

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to