1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #1234 from mrjana/overlay

Fix panic if miss notification sock is nil
This commit is contained in:
Alessandro Boch 2016-06-09 17:08:11 -07:00 committed by GitHub
commit bc147ce99d

View file

@ -510,7 +510,10 @@ func (n *network) initSandbox() error {
} }
}) })
go n.watchMiss(nlSock) if nlSock != nil {
go n.watchMiss(nlSock)
}
return nil return nil
} }