Merge pull request #13471 from ibuildthecloud/no-nil

Preinitialize MountPoints to avoid assigning to a nil map
This commit is contained in:
Brian Goff 2015-05-26 12:26:49 -04:00
commit 0fccc40307
1 changed files with 1 additions and 0 deletions

View File

@ -161,6 +161,7 @@ func (daemon *Daemon) load(id string) (*Container, error) {
CommonContainer: CommonContainer{
State: NewState(),
root: daemon.containerRoot(id),
MountPoints: make(map[string]*mountPoint),
execCommands: newExecStore(),
},
}