diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-07-15 18:32:32 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-07-15 18:32:32 -0700 |
| commit | bb974dcfa8a22cdf528b6035ab5226f6691f0abf (patch) | |
| tree | 3dcd2a4f3e6c32a2724ade2eadbe07ca91c11203 /src/protocol | |
| parent | a7b16f1d07b680ae8024438e1555d3c43426e4b8 (diff) | |
| download | nng-bb974dcfa8a22cdf528b6035ab5226f6691f0abf.tar.gz nng-bb974dcfa8a22cdf528b6035ab5226f6691f0abf.tar.bz2 nng-bb974dcfa8a22cdf528b6035ab5226f6691f0abf.zip | |
Fix incorrect attempt to proceed inproc.
Diffstat (limited to 'src/protocol')
| -rw-r--r-- | src/protocol/bus/bus.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/protocol/bus/bus.c b/src/protocol/bus/bus.c index c235e60a..167c342d 100644 --- a/src/protocol/bus/bus.c +++ b/src/protocol/bus/bus.c @@ -276,7 +276,8 @@ nni_bus_sock_getq_cb(void *arg) nni_bus_pipe *ppipe; nni_bus_pipe *lpipe; nni_msgq * uwq = nni_sock_sendq(psock->nsock); - nni_msg * msg, *dup; + nni_msg * msg; + nni_msg * dup; uint32_t sender; if (nni_aio_result(&psock->aio_getq) != 0) { |
