blackducksoftware / hub-client-go

Hub Client for Go (golang)
Apache License 2.0
9 stars 19 forks source link

BDOA-87. Fix nil pointer issue #83

Closed vasharapov closed 3 years ago

vasharapov commented 3 years ago

In hubclient.HttpGetString, response may be nil in case of an error. This results in "runtime error: invalid memory address or nil pointer dereference". This PR handles this case, by returning 0 status when response is nil.