summaryrefslogtreecommitdiff
path: root/pkg/domain/infra
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-06-16 23:02:41 +0200
committerGitHub <noreply@github.com>2020-06-16 23:02:41 +0200
commit89630adbc418eac4a7eddf683226ee61f24f93be (patch)
tree314afdb1569357fdd31219d62a1d26b6b6de32e7 /pkg/domain/infra
parentd6965da26d194c7edfef65985d4a2c7b564a3fca (diff)
parentfb4148bc41f597f28c1007e5c359f8baa61275a9 (diff)
downloadpodman-89630adbc418eac4a7eddf683226ee61f24f93be.tar.gz
podman-89630adbc418eac4a7eddf683226ee61f24f93be.tar.bz2
podman-89630adbc418eac4a7eddf683226ee61f24f93be.zip
Merge pull request #6624 from rhatdan/mount
Fix podman-remote images
Diffstat (limited to 'pkg/domain/infra')
-rw-r--r--pkg/domain/infra/tunnel/images.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/tunnel/images.go b/pkg/domain/infra/tunnel/images.go
index ec2c53c4f..fc7ac0aa8 100644
--- a/pkg/domain/infra/tunnel/images.go
+++ b/pkg/domain/infra/tunnel/images.go
@@ -39,7 +39,7 @@ func (ir *ImageEngine) List(ctx context.Context, opts entities.ImageListOptions)
return nil, err
}
- is := make([]*entities.ImageSummary, 0, len(images))
+ is := make([]*entities.ImageSummary, len(images))
for i, img := range images {
hold := entities.ImageSummary{}
if err := utils.DeepCopy(&hold, img); err != nil {