fix memory leak?
This commit is contained in:
parent
150b1f6f1f
commit
f458529c74
1 changed files with 2 additions and 0 deletions
|
@ -62,6 +62,7 @@ func (c *Client) HasBlob(hash string) (bool, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false, errors.Err(err)
|
return false, errors.Err(err)
|
||||||
}
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
if resp.StatusCode == http.StatusOK {
|
if resp.StatusCode == http.StatusOK {
|
||||||
return true, nil
|
return true, nil
|
||||||
}
|
}
|
||||||
|
@ -77,6 +78,7 @@ func (c *Client) GetBlob(hash string) (stream.Blob, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Err(err)
|
return nil, errors.Err(err)
|
||||||
}
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
if resp.StatusCode == http.StatusNotFound {
|
if resp.StatusCode == http.StatusNotFound {
|
||||||
fmt.Printf("%s blob not found %d\n", hash, resp.StatusCode)
|
fmt.Printf("%s blob not found %d\n", hash, resp.StatusCode)
|
||||||
return nil, errors.Err(store.ErrBlobNotFound)
|
return nil, errors.Err(store.ErrBlobNotFound)
|
||||||
|
|
Loading…
Reference in a new issue