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
73dfc3d4
Commit
73dfc3d4
authored
Sep 25, 2012
by
Marcus Meissner
Committed by
Alexandre Julliard
Sep 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Fixed incorrect buffer size.
parent
6ebf1396
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
url.c
dlls/shlwapi/tests/url.c
+1
-1
No files found.
dlls/shlwapi/tests/url.c
View file @
73dfc3d4
...
...
@@ -1062,7 +1062,7 @@ static void test_UrlCanonicalizeW(void)
BOOL
choped
;
int
pos
;
MultiByteToWideChar
(
CP_ACP
,
0
,
"http://www.winehq.org/X"
,
-
1
,
szUrl
,
sizeof
(
szUrl
));
MultiByteToWideChar
(
CP_ACP
,
0
,
"http://www.winehq.org/X"
,
-
1
,
szUrl
,
sizeof
(
szUrl
)
/
sizeof
(
szUrl
[
0
])
);
pos
=
lstrlenW
(
szUrl
)
-
1
;
szUrl
[
pos
]
=
i
;
urllen
=
INTERNET_MAX_URL_LENGTH
;
...
...
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