diff options
author | Florin Coras <fcoras@cisco.com> | 2020-04-24 17:09:25 +0000 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2020-08-13 17:20:47 +0000 |
commit | 138d43ce77443559da70432905a98569f54270b7 (patch) | |
tree | a79cffb7d1f7eedf4e8c56a78138d065edb6bda4 /src/vcl/ldp.c | |
parent | 3b49dc6cc80e1a373363b2ff055327dda89e50db (diff) |
vcl: generate select events on read/write errors
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I3429f9d0406b6d710846fc82d77400f26f77fdf4
(cherry picked from commit 5e6222a0332e38316b5a58b23c35cca69bb72025)
Diffstat (limited to 'src/vcl/ldp.c')
-rw-r--r-- | src/vcl/ldp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vcl/ldp.c b/src/vcl/ldp.c index 8bb512a5082..15f5b0753b8 100644 --- a/src/vcl/ldp.c +++ b/src/vcl/ldp.c @@ -775,6 +775,7 @@ ldp_pselect (int nfds, fd_set * __restrict readfds, { errno = -rv; rv = -1; + goto done; } else if (rv > 0) { |