replication:alloc UserDefined map before use (#11478)

This commit is contained in:
Poorna Krishnamoorthy 2021-02-07 22:01:10 -08:00 committed by GitHub
parent 152d7cd95b
commit 8e1bbd989a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -914,6 +914,7 @@ func proxyHeadToRepTarget(ctx context.Context, bucket, object string, opts Objec
ReplicationStatus: replication.StatusType(objInfo.ReplicationStatus),
UserTags: tags.String(),
}
oi.UserDefined = make(map[string]string, len(objInfo.Metadata))
for k, v := range objInfo.Metadata {
oi.UserDefined[k] = v[0]
}