Merge pull request #154 from noxiouz/fix_deinitialization_deadlock

[IPC/Client] Get rid of an unnecessary stopChan sending
pull/163/head
Stephen Day 2015-02-09 14:41:20 -08:00
commit d224eda04c
1 changed files with 0 additions and 1 deletions

View File

@ -158,7 +158,6 @@ func (driver *StorageDriverClient) Stop() error {
killErr = driver.subprocess.Process.Kill()
}
if driver.stopChan != nil {
driver.stopChan <- struct{}{}
close(driver.stopChan)
}