mirror of
https://github.com/containers/podman.git
synced 2025-06-27 21:50:18 +08:00
container: check containerInfo.Config before accessing it
check that containerInfo.Config is not nil before trying to access it. Closes: https://github.com/containers/libpod/issues/2654 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
@ -337,12 +337,14 @@ func (c *Container) setupStorage(ctx context.Context) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Set the default Entrypoint and Command
|
// Set the default Entrypoint and Command
|
||||||
|
if containerInfo.Config != nil {
|
||||||
if c.config.Entrypoint == nil {
|
if c.config.Entrypoint == nil {
|
||||||
c.config.Entrypoint = containerInfo.Config.Config.Entrypoint
|
c.config.Entrypoint = containerInfo.Config.Config.Entrypoint
|
||||||
}
|
}
|
||||||
if c.config.Command == nil {
|
if c.config.Command == nil {
|
||||||
c.config.Command = containerInfo.Config.Config.Cmd
|
c.config.Command = containerInfo.Config.Config.Cmd
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
artifacts := filepath.Join(c.config.StaticDir, artifactsDir)
|
artifacts := filepath.Join(c.config.StaticDir, artifactsDir)
|
||||||
if err := os.MkdirAll(artifacts, 0755); err != nil {
|
if err := os.MkdirAll(artifacts, 0755); err != nil {
|
||||||
|
Reference in New Issue
Block a user