aboutsummaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2021-02-15 09:32:49 -0600
committerMatthew Heon <mheon@redhat.com>2021-02-18 10:37:36 -0500
commite9328d13f4d6360fe772bc18475e0e71ae8280b9 (patch)
tree6fd02f7feb1bc78e57adc855b167a5a25cc5e673 /libpod
parent32350c758ddfef52a53e7d74d4a68785bc54aaef (diff)
downloadpodman-e9328d13f4d6360fe772bc18475e0e71ae8280b9.tar.gz
podman-e9328d13f4d6360fe772bc18475e0e71ae8280b9.tar.bz2
podman-e9328d13f4d6360fe772bc18475e0e71ae8280b9.zip
Fix panic in pod creation
when creating a pod with --infra-image and using a untagged image for the infra-image (none/none), the lookup for the image's name was creating a panic. Fixes: #9374 Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'libpod')
-rw-r--r--libpod/runtime_pod_infra_linux.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/libpod/runtime_pod_infra_linux.go b/libpod/runtime_pod_infra_linux.go
index 564851f4e..40632bdd0 100644
--- a/libpod/runtime_pod_infra_linux.go
+++ b/libpod/runtime_pod_infra_linux.go
@@ -226,7 +226,10 @@ func (r *Runtime) createInfraContainer(ctx context.Context, p *Pod) (*Container,
if err != nil {
return nil, err
}
- imageName := newImage.Names()[0]
+ imageName := "none"
+ if len(newImage.Names()) > 0 {
+ imageName = newImage.Names()[0]
+ }
imageID := data.ID
return r.makeInfraContainer(ctx, p, imageName, r.config.Engine.InfraImage, imageID, data.Config)