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

close the file

Signed-off-by: zhukj <zhu.kunjia@zte.com.cn>
This commit is contained in:
zhukj 2016-11-21 19:56:01 +08:00
parent baa14c0e61
commit cf3ef262b1

View file

@ -140,6 +140,7 @@ func (daemon *Daemon) verifyVolumesInfo(container *container.Container) error {
if err != nil {
return errors.Wrap(err, "could not open container config")
}
defer f.Close()
var cv volumes
if err := json.NewDecoder(f).Decode(&cv); err != nil {
return errors.Wrap(err, "could not decode container config")