Commit 1c113961 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

urlmon: Fix typo in trace in validate_path.

parent f89fdb44
...@@ -3776,7 +3776,7 @@ static HRESULT validate_path(const UriBuilder *builder, parse_data *data, DWORD ...@@ -3776,7 +3776,7 @@ static HRESULT validate_path(const UriBuilder *builder, parse_data *data, DWORD
parse_path_opaque(pptr, data, flags) : parse_path_hierarchical(pptr, data, flags); parse_path_opaque(pptr, data, flags) : parse_path_hierarchical(pptr, data, flags);
if(!valid || (check_len && expected_len != data->path_len)) { if(!valid || (check_len && expected_len != data->path_len)) {
TRACE("(%p %p %x): Invalid path componet %s.\n", builder, data, flags, TRACE("(%p %p %x): Invalid path component %s.\n", builder, data, flags,
debugstr_wn(component, expected_len)); debugstr_wn(component, expected_len));
return INET_E_INVALID_URL; return INET_E_INVALID_URL;
} }
......
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