Fix code-style
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
parent
4f70b3cdb4
commit
78c6f40736
1 changed files with 4 additions and 1 deletions
|
@ -494,7 +494,10 @@ static int pkcs7_get_signed_data(unsigned char *buf, size_t buflen,
|
|||
|
||||
if (p != end_content_info) {
|
||||
/* Determine if valid content is present */
|
||||
ret = mbedtls_asn1_get_tag(&p, end_content_info, &len, MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_CONTEXT_SPECIFIC);
|
||||
ret = mbedtls_asn1_get_tag(&p,
|
||||
end_content_info,
|
||||
&len,
|
||||
MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_CONTEXT_SPECIFIC);
|
||||
if (ret != 0) {
|
||||
return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_PKCS7_INVALID_CONTENT_INFO, ret);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue