mirror of
https://github.com/containers/podman.git
synced 2025-06-22 18:08:11 +08:00
Merge pull request #2656 from giuseppe/fix-rootfs-segfault
container: check containerInfo.Config before accessing it
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