We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 092145f commit 5950dccCopy full SHA for 5950dcc
libc/libc.go
@@ -34,7 +34,7 @@ func (l LibcInfo) IsEqual(other LibcInfo) bool {
34
// Non-empty values from other override values in the receiver.
35
func (l *LibcInfo) Merge(other LibcInfo) {
36
// If other has TSDInfo and this instance does not, take it
37
- if other.TSDInfo != (TSDInfo{}) && l.TSDInfo == (TSDInfo{}) {
+ if l.TSDInfo == (TSDInfo{}) {
38
l.TSDInfo = other.TSDInfo
39
}
40
0 commit comments