mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-28 00:21:48 +03:00
Remove duplicate '+' in comparison string
Signed-off-by: Agathiyan Bragadeesh <agathiyan.bragadeesh2@arm.com>
This commit is contained in:
@ -197,7 +197,7 @@ static int parse_attribute_value_string(const char *s,
|
||||
hexpair = 1;
|
||||
*(d++) = n;
|
||||
c++;
|
||||
} else if (c == end || !strchr(" ,=+<>#;\"\\+", *c)) {
|
||||
} else if (c == end || !strchr(" ,=+<>#;\"\\", *c)) {
|
||||
return MBEDTLS_ERR_X509_INVALID_NAME;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user