update github.com/godbus/dbus to latest master (#1305)

* update github.com/godbus/dbus to 271e53dc4968a0f8862f20841cc63bb5f43d6c57

Signed-off-by: Theo Brigitte <theo.brigitte@gmail.com>
This commit is contained in:
Théo Brigitte 2019-04-03 12:32:48 +02:00 committed by Ben Kochie
commit 4d88761c13
8 changed files with 28 additions and 13 deletions

View file

@ -263,13 +263,13 @@ func (sh *defaultSignalHandler) DeliverSignal(intf, name string, signal *Signal)
case <-sh.closeChan:
return
default:
go func() {
go func(ch chan<- *Signal) {
select {
case ch <- signal:
case <-sh.closeChan:
return
}
}()
}(ch)
}
}
}