packer/rpc: fix data race in MuxConn

pull/701/head
Mitchell Hashimoto 12 years ago
parent 10c90e6513
commit dd50e9d535

@ -241,7 +241,9 @@ func (m *MuxConn) loop() {
m.mu.Lock()
defer m.mu.Unlock()
for _, w := range m.streams {
w.mu.Lock()
w.remoteClose()
w.mu.Unlock()
}
}()

Loading…
Cancel
Save