OSSL_STORE "file" scheme loader: check that a DOS device is correctly named
Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3907)
This commit is contained in:
parent
6eaebfaab5
commit
1145995323
1 changed files with 7 additions and 3 deletions
|
@ -783,10 +783,14 @@ static OSSL_STORE_LOADER_CTX *file_open(const OSSL_STORE_LOADER *loader,
|
|||
#ifdef _WIN32
|
||||
/* Windows file: URIs with a drive letter start with a / */
|
||||
if (p[0] == '/' && p[2] == ':' && p[3] == '/') {
|
||||
char c = tolower(p[1]);
|
||||
|
||||
if (c >= 'a' && c <= 'z') {
|
||||
p++;
|
||||
/* We know it's absolute, so no need to check */
|
||||
path_data[path_data_n].check_absolute = 0;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
path_data[path_data_n++].path = p;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue