Skip to content

Commit f7df258

Browse files
authored
Revert "Fix race condition in 33across.go (prebid#1757)" (prebid#1763)
This reverts commit bdf1e7b.
1 parent bdf1e7b commit f7df258

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adapters/33across/33across.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ func (a *TtxAdapter) MakeBids(internalRequest *openrtb.BidRequest, externalReque
228228
}
229229

230230
func validateVideoParams(video *openrtb.Video, prod string) (*openrtb.Video, error) {
231-
videoCopy := *video
231+
videoCopy := video
232232
if videoCopy.W == 0 ||
233233
videoCopy.H == 0 ||
234234
videoCopy.Protocols == nil ||
@@ -252,7 +252,7 @@ func validateVideoParams(video *openrtb.Video, prod string) (*openrtb.Video, err
252252
}
253253
}
254254

255-
return &videoCopy, nil
255+
return videoCopy, nil
256256
}
257257

258258
func getBidType(ext bidExt) openrtb_ext.BidType {

0 commit comments

Comments
 (0)