core: Fix possible memory leak in smartcard certificate enumeration
When enumerating smartcard certificates we check if we have duplicates in our certificate list. In case we detect a duplicate we just return `TRUE` (indicating that we consumed the certificate info) but do not free the smartcard info instance.
This commit is contained in:
parent
ca13987e84
commit
4859a5dfd4
@ -132,7 +132,10 @@ static BOOL add_cert_to_list(SmartcardCertInfo*** certInfoList, size_t* count,
|
||||
for (size_t i = 0; i < curCount; ++i)
|
||||
{
|
||||
if (_wcscmp(curInfoList[i]->containerName, certInfo->containerName) == 0)
|
||||
{
|
||||
smartcardCertInfo_Free(certInfo);
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
curInfoList = realloc(curInfoList, sizeof(SmartcardCertInfo*) * (curCount + 1));
|
||||
|
Loading…
Reference in New Issue
Block a user