Add blank lines after variable declarations
Signed-off-by: Agathiyan Bragadeesh <agathiyan.bragadeesh2@arm.com>
This commit is contained in:
parent
7d20138385
commit
ef6abd4062
1 changed files with 2 additions and 0 deletions
|
@ -158,6 +158,7 @@ static int parse_attribute_value_string(const char *s,
|
||||||
int hexpair = 0;
|
int hexpair = 0;
|
||||||
unsigned char *d = data;
|
unsigned char *d = data;
|
||||||
int n;
|
int n;
|
||||||
|
|
||||||
while (c < end) {
|
while (c < end) {
|
||||||
if (*c == '\\') {
|
if (*c == '\\') {
|
||||||
c++;
|
c++;
|
||||||
|
@ -202,6 +203,7 @@ static int parse_attribute_value_der_encoded(const char *s,
|
||||||
unsigned char *p;
|
unsigned char *p;
|
||||||
unsigned char *d = data;
|
unsigned char *d = data;
|
||||||
int n;
|
int n;
|
||||||
|
|
||||||
/* Converting from hexstring to raw binary so we can use asn1parse.c*/
|
/* Converting from hexstring to raw binary so we can use asn1parse.c*/
|
||||||
if ((len < 5) || (*c != '#')) {
|
if ((len < 5) || (*c != '#')) {
|
||||||
return MBEDTLS_ERR_X509_INVALID_NAME;
|
return MBEDTLS_ERR_X509_INVALID_NAME;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue