mirror of
https://github.com/containers/podman.git
synced 2025-06-26 21:07:02 +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,11 +337,13 @@ func (c *Container) setupStorage(ctx context.Context) error {
|
||||
}
|
||||
|
||||
// Set the default Entrypoint and Command
|
||||
if c.config.Entrypoint == nil {
|
||||
c.config.Entrypoint = containerInfo.Config.Config.Entrypoint
|
||||
}
|
||||
if c.config.Command == nil {
|
||||
c.config.Command = containerInfo.Config.Config.Cmd
|
||||
if containerInfo.Config != nil {
|
||||
if c.config.Entrypoint == nil {
|
||||
c.config.Entrypoint = containerInfo.Config.Config.Entrypoint
|
||||
}
|
||||
if c.config.Command == nil {
|
||||
c.config.Command = containerInfo.Config.Config.Cmd
|
||||
}
|
||||
}
|
||||
|
||||
artifacts := filepath.Join(c.config.StaticDir, artifactsDir)
|
||||
|
Reference in New Issue
Block a user