mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 00:08:39 +09:00
Merge remote-tracking branch 'origin/tracking' into custom
This commit is contained in:
commit
85f6a49297
19 changed files with 347 additions and 170 deletions
|
|
@ -172,10 +172,17 @@ CTLogVerifier::Verify(const LogEntry& entry,
|
|||
if (rv != Success) {
|
||||
return rv;
|
||||
}
|
||||
|
||||
// sct.extensions may be empty. If it is, sctExtensionsInput will remain in
|
||||
// its default state, which is valid but of length 0.
|
||||
Input sctExtensionsInput;
|
||||
rv = BufferToInput(sct.extensions, sctExtensionsInput);
|
||||
if (rv != Success) {
|
||||
return rv;
|
||||
if (sct.extensions.length() > 0) {
|
||||
rv = sctExtensionsInput.Init(sct.extensions.begin(),
|
||||
sct.extensions.length());
|
||||
if (rv != Success) {
|
||||
return rv;
|
||||
}
|
||||
}
|
||||
|
||||
Buffer serializedData;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue