Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
dff271df
Commit
dff271df
authored
Dec 24, 2006
by
Louis Lenders
Committed by
Alexandre Julliard
Dec 24, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Fix a failing test.
parent
e37755b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
path.c
dlls/shlwapi/tests/path.c
+1
-1
url.c
dlls/shlwapi/url.c
+1
-1
No files found.
dlls/shlwapi/tests/path.c
View file @
dff271df
...
...
@@ -481,7 +481,7 @@ static void test_UrlEscape(void)
unsigned
int
i
;
ret
=
UrlEscapeA
(
"/woningplan/woonkamer basis.swf"
,
NULL
,
&
size
,
URL_ESCAPE_SPACES_ONLY
);
ok
(
ret
==
E_
POINTER
,
"got %x, expected %x
\n
"
,
ret
,
E_POINTER
);
ok
(
ret
==
E_
INVALIDARG
,
"got %x, expected %x
\n
"
,
ret
,
E_INVALIDARG
);
for
(
i
=
0
;
i
<
sizeof
(
TEST_ESCAPE
)
/
sizeof
(
TEST_ESCAPE
[
0
]);
i
++
)
{
test_url_escape
(
TEST_ESCAPE
[
i
].
url
,
TEST_ESCAPE
[
i
].
flags
,
...
...
dlls/shlwapi/url.c
View file @
dff271df
...
...
@@ -844,7 +844,7 @@ HRESULT WINAPI UrlEscapeA(
*
pcchEscaped
=
lenA
;
}
else
{
*
pcchEscaped
=
lenA
+
1
;
ret
=
E_
POINTER
;
ret
=
E_
INVALIDARG
;
}
}
if
(
escapedW
!=
bufW
)
HeapFree
(
GetProcessHeap
(),
0
,
escapedW
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment