Fix resource leak in x509_ocsp_response

This commit is contained in:
Thomas Egerer 2011-11-04 09:24:47 +01:00 committed by Tobias Brunner
parent dbfd1a63aa
commit c230885a07
1 changed files with 4 additions and 0 deletions

View File

@ -373,6 +373,10 @@ static bool parse_singleResponse(private_x509_ocsp_response_t *this,
}
this->responses->insert_last(this->responses, response);
}
else
{
free(response);
}
return success;
}