mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
net/netcheck: fix netcheck cli-triggered nil pointer deref (#13782)
Updates #13780 Signed-off-by: Jordan Whited <jordan@tailscale.com>
This commit is contained in:
parent
acb4a22dcc
commit
33029d4486
@ -940,7 +940,7 @@ func (c *Client) GetReport(ctx context.Context, dm *tailcfg.DERPMap, opts *GetRe
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(need) > 0 {
|
if len(need) > 0 {
|
||||||
if !opts.OnlyTCP443 {
|
if opts == nil || !opts.OnlyTCP443 {
|
||||||
// Kick off ICMP in parallel to HTTPS checks; we don't
|
// Kick off ICMP in parallel to HTTPS checks; we don't
|
||||||
// reuse the same WaitGroup for those probes because we
|
// reuse the same WaitGroup for those probes because we
|
||||||
// need to close the underlying Pinger after a timeout
|
// need to close the underlying Pinger after a timeout
|
||||||
|
Loading…
Reference in New Issue
Block a user