mirror of
https://github.com/go-acme/lego.git
synced 2025-01-02 06:57:22 +02:00
Close leaky file descriptors
This commit is contained in:
parent
38e66cf43a
commit
2c24056374
@ -63,6 +63,7 @@ func GetOCSPForCert(bundle []byte) ([]byte, int, error) {
|
||||
if err != nil {
|
||||
return nil, OCSPUnknown, err
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
issuerBytes, err := ioutil.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
@ -96,6 +97,7 @@ func GetOCSPForCert(bundle []byte) ([]byte, int, error) {
|
||||
if err != nil {
|
||||
return nil, OCSPUnknown, err
|
||||
}
|
||||
defer req.Body.Close()
|
||||
|
||||
ocspResBytes, err := ioutil.ReadAll(req.Body)
|
||||
ocspRes, err := ocsp.ParseResponse(ocspResBytes, issuerCert)
|
||||
|
Loading…
Reference in New Issue
Block a user