Skip to content

Commit 5950dcc

Browse files
dalehamelfabled
andcommitted
Update libc/libc.go
Co-authored-by: Timo Teräs <timo.teras@iki.fi>
1 parent 092145f commit 5950dcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/libc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func (l LibcInfo) IsEqual(other LibcInfo) bool {
3434
// Non-empty values from other override values in the receiver.
3535
func (l *LibcInfo) Merge(other LibcInfo) {
3636
// If other has TSDInfo and this instance does not, take it
37-
if other.TSDInfo != (TSDInfo{}) && l.TSDInfo == (TSDInfo{}) {
37+
if l.TSDInfo == (TSDInfo{}) {
3838
l.TSDInfo = other.TSDInfo
3939
}
4040

0 commit comments

Comments
 (0)