1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

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(),
},
}