mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:17:35 +00:00
LibCrypto: Fix some issues preventing compilation w/ clang 10
This commit is contained in:
parent
d497521d2b
commit
2a241a11bb
3 changed files with 2 additions and 3 deletions
|
@ -265,7 +265,7 @@ constexpr static bool der_length_sequence(ASN1::List* list, size_t in_length, si
|
|||
return true;
|
||||
}
|
||||
|
||||
static bool der_decode_sequence(const u8* in, size_t in_length, ASN1::List* list, size_t out_length, bool ordered = true)
|
||||
static inline bool der_decode_sequence(const u8* in, size_t in_length, ASN1::List* list, size_t out_length, bool ordered = true)
|
||||
{
|
||||
if (in_length < 2) {
|
||||
dbg() << "header too small";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue