Skip to content

Commit 06dcd85

Browse files
authored
mutate: Create a defensive annotations copy (#2030)
Since this is computed lazily, the caller can modify the map, which would break the ~immutable nature of this API, so we create a defensive copy. Signed-off-by: Jon Johnson <[email protected]>
1 parent a9a53a8 commit 06dcd85

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pkg/v1/mutate/mutate.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import (
2121
"errors"
2222
"fmt"
2323
"io"
24+
"maps"
2425
"path/filepath"
2526
"strings"
2627
"time"
@@ -165,16 +166,16 @@ func Annotations(f partial.WithRawManifest, anns map[string]string) partial.With
165166
if img, ok := f.(v1.Image); ok {
166167
return &image{
167168
base: img,
168-
annotations: anns,
169+
annotations: maps.Clone(anns),
169170
}
170171
}
171172
if idx, ok := f.(v1.ImageIndex); ok {
172173
return &index{
173174
base: idx,
174-
annotations: anns,
175+
annotations: maps.Clone(anns),
175176
}
176177
}
177-
return arbitraryRawManifest{a: f, anns: anns}
178+
return arbitraryRawManifest{a: f, anns: maps.Clone(anns)}
178179
}
179180

180181
type arbitraryRawManifest struct {

0 commit comments

Comments
 (0)