Skip to content

Commit 0b8da74

Browse files
Merge pull request #86395 from yutedz/nil-map-conversion
Allocate map when out parameter points to nil map Kubernetes-commit: 8b7cf0fcdf89ec19cb17ba16efa556edc3db3838
1 parent efe42e9 commit 0b8da74

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Godeps/Godeps.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ require (
2929
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
3030
google.golang.org/appengine v1.5.0 // indirect
3131
k8s.io/api v0.0.0-20191214185829-ca1d04f8b0d3
32-
k8s.io/apimachinery v0.0.0-20191214185652-442f8fb2f03a
32+
k8s.io/apimachinery v0.0.0-20191216025728-0ee8b4573e3a
3333
k8s.io/klog v1.0.0
3434
k8s.io/utils v0.0.0-20191114184206-e782cd3c129f
3535
sigs.k8s.io/yaml v1.1.0
@@ -39,5 +39,5 @@ replace (
3939
golang.org/x/sys => golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a // pinned to release-branch.go1.13
4040
golang.org/x/tools => golang.org/x/tools v0.0.0-20190821162956-65e3620a7ae7 // pinned to release-branch.go1.13
4141
k8s.io/api => k8s.io/api v0.0.0-20191214185829-ca1d04f8b0d3
42-
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20191214185652-442f8fb2f03a
42+
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20191216025728-0ee8b4573e3a
4343
)

go.sum

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
194194
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
195195
honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
196196
k8s.io/api v0.0.0-20191214185829-ca1d04f8b0d3/go.mod h1:itOjKREfmUTvcjantxOsyYU5mbFsU7qUnyUuRfF5+5M=
197-
k8s.io/apimachinery v0.0.0-20191214185652-442f8fb2f03a/go.mod h1:Ng1IY8TS7sC44KJxT/WUR6qFRfWwahYYYpNXyYRKOCY=
197+
k8s.io/apimachinery v0.0.0-20191216025728-0ee8b4573e3a/go.mod h1:Ng1IY8TS7sC44KJxT/WUR6qFRfWwahYYYpNXyYRKOCY=
198198
k8s.io/gengo v0.0.0-20190128074634-0689ccc1d7d6/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0=
199199
k8s.io/klog v0.0.0-20181102134211-b9b56d5dfc92/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk=
200200
k8s.io/klog v0.3.0/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk=

0 commit comments

Comments
 (0)