-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RSDK-10247 Guard FTDC net dereference #4849
Conversation
@dgottlieb lint started complaining about NPEs for all the other fields once I started checking that |
ftdc/sys/net.go
Outdated
@@ -57,13 +57,13 @@ func (netStatser *netStatser) Stats() any { | |||
} | |||
} | |||
|
|||
if netTCPSummary, err := netStatser.fs.NetTCPSummary(); err == nil { | |||
if netTCPSummary, err := netStatser.fs.NetTCPSummary(); err == nil && netTCPSummary != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you check the source code to see if it's possible for NetTCPSummary() to return a nil value and* a nil error? I'm not keen on accepting this change -- I prefer to be more explicit with a nolint if the linter is actually wrong. To avoid confusing the reader.
ftdc/sys/net.go
Outdated
ret.TCP.TxQueueLength = netTCPSummary.TxQueueLength | ||
ret.TCP.RxQueueLength = netTCPSummary.RxQueueLength | ||
ret.TCP.UsedSockets = netTCPSummary.UsedSockets | ||
} | ||
|
||
if netUDPSummary, err := netStatser.fs.NetUDPSummary(); err == nil { | ||
if netUDPSummary, err := netStatser.fs.NetUDPSummary(); err == nil && netUDPSummary != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same question/concern
Yeah I'll take a closer look. |
I took a closer look: neither |
de956a6
to
a5e5592
Compare
RSDK-10247
I think
netStatser.fs.NetUDPSummary()
can returnnil
and cause a npe in some circumstances (after robot close maybe?) Guarded the one actual dereference (the calls above don't cause issue.)I saw this stack trace from a new test I was writing: