mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 18:25:19 +00:00
urlmon: Fix copy and paste error (coverity).
This commit is contained in:
parent
34f74fdc71
commit
93936c4f99
@ -272,7 +272,7 @@ static inline BOOL is_drive_path(const WCHAR *str) {
|
||||
}
|
||||
|
||||
static inline BOOL is_unc_path(const WCHAR *str) {
|
||||
return (str[0] == '\\' && str[0] == '\\');
|
||||
return (str[0] == '\\' && str[1] == '\\');
|
||||
}
|
||||
|
||||
static inline BOOL is_forbidden_dos_path_char(WCHAR val) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user