Commit 76f1d42d authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 481da375
...@@ -328,7 +328,9 @@ func (nl *NodeLink) serveRecv() { ...@@ -328,7 +328,9 @@ func (nl *NodeLink) serveRecv() {
connId := ntoh32(pkt.Header().ConnId) connId := ntoh32(pkt.Header().ConnId)
nl.connMu.Lock() nl.connMu.Lock()
// XXX connTab == nil here
// connTab is never nil here - becuase shutdown before
// resetting it waits for us to finish.
conn := nl.connTab[connId] conn := nl.connTab[connId]
if conn == nil { if conn == nil {
if nl.acceptq != nil { if nl.acceptq != nil {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment