Commit 93936c4f authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

urlmon: Fix copy and paste error (coverity).

parent 34f74fdc
...@@ -272,7 +272,7 @@ static inline BOOL is_drive_path(const WCHAR *str) { ...@@ -272,7 +272,7 @@ static inline BOOL is_drive_path(const WCHAR *str) {
} }
static inline BOOL is_unc_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) { static inline BOOL is_forbidden_dos_path_char(WCHAR val) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment