diff options
author | Valentin Bartenev <vbart@nginx.com> | 2018-04-17 21:13:43 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2018-04-17 21:13:43 +0300 |
commit | ab4f86799635077f3144456de59d3b7487a2bce0 (patch) | |
tree | 37354788173b4a8eed4c5d58b1da090c79753b5b /src/nxt_router.c | |
parent | 7f79f2f10505403750739691346de1626a330f60 (diff) | |
download | unit-ab4f86799635077f3144456de59d3b7487a2bce0.tar.gz unit-ab4f86799635077f3144456de59d3b7487a2bce0.tar.bz2 |
Added missing checks if nxt_port_rpc_register_handler() failed.
This closes #97 issue on GitHub.
Thanks to 洪志道 (Hong Zhi Dao).
Diffstat (limited to 'src/nxt_router.c')
-rw-r--r-- | src/nxt_router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_router.c b/src/nxt_router.c index 692d3a48..b70fbc7d 100644 --- a/src/nxt_router.c +++ b/src/nxt_router.c @@ -1741,7 +1741,7 @@ nxt_router_listen_socket_rpc_create(nxt_task_t *task, nxt_router_listen_socket_ready, nxt_router_listen_socket_error, main_port->pid, rpc); - if (stream == 0) { + if (nxt_slow_path(stream == 0)) { goto fail; } |