mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1083539: Fix dropped return value check (r=keeler)
This commit is contained in:
parent
ff236301f8
commit
37fd9e59a1
@ -781,6 +781,9 @@ KeyHash(TrustDomain& trustDomain, const Input subjectPublicKeyInfo,
|
||||
Reader spki;
|
||||
Result rv = der::ExpectTagAndGetValueAtEnd(subjectPublicKeyInfo,
|
||||
der::SEQUENCE, spki);
|
||||
if (rv != Success) {
|
||||
return rv;
|
||||
}
|
||||
|
||||
// Skip AlgorithmIdentifier
|
||||
rv = der::ExpectTagAndSkipValue(spki, der::SEQUENCE);
|
||||
|
Loading…
Reference in New Issue
Block a user