diff options
author | Florin Coras <fcoras@cisco.com> | 2018-12-21 19:28:34 -0800 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-12-23 08:24:22 +0000 |
commit | c227e4950d3bc791d2ec4a2131916f9b5c40f008 (patch) | |
tree | 746622b5fcab55401d3eb874f6ca93c7a852525d /src/vcl/sock_test_client.c | |
parent | 54ddf435338ce035c1a92199acd5a3b217db177b (diff) |
vcl: fix coverity warnings
Change-Id: I24445b08a46041c370094ebba4243422e2342a26
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vcl/sock_test_client.c')
-rw-r--r-- | src/vcl/sock_test_client.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/vcl/sock_test_client.c b/src/vcl/sock_test_client.c index bf467981815..78987974ee6 100644 --- a/src/vcl/sock_test_client.c +++ b/src/vcl/sock_test_client.c @@ -648,7 +648,14 @@ sock_test_connect_test_sockets (uint32_t num_test_sockets) errno_val); return tsock->fd; } - fcntl (tsock->fd, F_SETFL, O_NONBLOCK); + if (fcntl (tsock->fd, F_SETFL, O_NONBLOCK) < 0) + { + errno_val = errno; + perror ("ERROR in sock_test_connect_test_sockets()"); + fprintf (stderr, "CLIENT: ERROR: fcntl failed (errno = %d)!\n", + errno_val); + return -1; + } #ifdef VCL_TEST rv = vppcom_session_connect (tsock->fd, &scm->server_endpt); |