You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 15, 2020. It is now read-only.
In https://github.com/kolide/fleet/blob/master/server/service/client.go#L53 we use
errors.Wrap
inside a statement that returns only abool
error status.errors.Wrap
returnsnil
if the provided error isnil
. If execution has made it to this point, theerr
variable is certain to benil
.The function returns
nil, nil
, leading to a segfault later when the client is used.The text was updated successfully, but these errors were encountered: