Skip to content

Commit

Permalink
Merge pull request containers#18209 from mtrmac/no-NewBuffer
Browse files Browse the repository at this point in the history
Don't use bytes.NewBuffer to read data
  • Loading branch information
openshift-merge-robot authored Apr 17, 2023
2 parents 625ff8f + e9356ba commit 5c70641
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libpod/oci_conmon_common.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ func (r *ConmonOCIRuntime) UpdateContainerStatus(ctr *Container) error {
if err != nil {
return fmt.Errorf("reading stdout: %s: %w", ctr.ID(), err)
}
if err := json.NewDecoder(bytes.NewBuffer(out)).Decode(state); err != nil {
if err := json.NewDecoder(bytes.NewReader(out)).Decode(state); err != nil {
return fmt.Errorf("decoding container status for container %s: %w", ctr.ID(), err)
}
ctr.state.PID = state.Pid
Expand Down
2 changes: 1 addition & 1 deletion pkg/domain/infra/abi/play_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ binaryData:
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
buf := bytes.NewBufferString(test.configMapContent)
buf := bytes.NewReader([]byte(test.configMapContent))
cm, err := readConfigMapFromFile(buf)

if test.expectError {
Expand Down

0 comments on commit 5c70641

Please sign in to comment.