ui: Bug fix: closed channel never blocks

This commit is contained in:
Hajime Hoshi 2016-08-03 01:07:46 +09:00
parent 30b521f3b8
commit 8e58f3ce0a

View File

@ -84,8 +84,12 @@ func (u *userInterface) main(ch <-chan error) error {
// TODO: Check this is done on the main thread.
for {
select {
case f := <-u.funcs:
case f, ok := <-u.funcs:
if ok {
f()
} else {
u.funcs = nil
}
case err := <-ch:
return err
}
@ -232,7 +236,6 @@ func (u *userInterface) Terminate() error {
return nil
})
close(u.funcs)
u.funcs = nil
return nil
}