1
0
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:
Agathiyan Bragadeesh
2023-08-10 16:03:27 +01:00
parent 5ca9848513
commit a7f9630925
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}