Response body must not be closed if request error'd.
This commit is contained in:
		| @@ -26,10 +26,10 @@ func SSHImportKeysFromURL(system_user string, url string) error { | ||||
|  | ||||
| func fetchUserKeys(url string) ([]string, error) { | ||||
| 	res, err := http.Get(url) | ||||
| 	defer res.Body.Close() | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	defer res.Body.Close() | ||||
| 	body, err := ioutil.ReadAll(res.Body) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
|   | ||||
		Reference in New Issue
	
	Block a user