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
0cf2adb3
Commit
0cf2adb3
authored
Mar 20, 2017
by
Marcus Meissner
Committed by
Alexandre Julliard
Mar 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Fixed incorrect buffer sizes.
Signed-off-by:
Marcus Meissner
<
marcus@jet.franken.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ad6c781e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
format_msg.c
dlls/kernel32/tests/format_msg.c
+2
-2
No files found.
dlls/kernel32/tests/format_msg.c
View file @
0cf2adb3
...
@@ -1822,7 +1822,7 @@ static void test_message_from_64bit_number(void)
...
@@ -1822,7 +1822,7 @@ static void test_message_from_64bit_number(void)
{
{
r
=
doitW
(
FORMAT_MESSAGE_FROM_STRING
,
I64u
,
r
=
doitW
(
FORMAT_MESSAGE_FROM_STRING
,
I64u
,
0
,
0
,
outW
,
sizeof
(
outW
)
/
sizeof
(
WCHAR
),
unsigned_tests
[
i
].
number
);
0
,
0
,
outW
,
sizeof
(
outW
)
/
sizeof
(
WCHAR
),
unsigned_tests
[
i
].
number
);
MultiByteToWideChar
(
CP_ACP
,
0
,
unsigned_tests
[
i
].
expected
,
-
1
,
expW
,
sizeof
(
expW
));
MultiByteToWideChar
(
CP_ACP
,
0
,
unsigned_tests
[
i
].
expected
,
-
1
,
expW
,
sizeof
(
expW
)
/
sizeof
(
WCHAR
)
);
todo_wine
{
todo_wine
{
ok
(
!
lstrcmpW
(
outW
,
expW
),
"[%d] failed, expected %s, got %s
\n
"
,
i
,
ok
(
!
lstrcmpW
(
outW
,
expW
),
"[%d] failed, expected %s, got %s
\n
"
,
i
,
unsigned_tests
[
i
].
expected
,
wine_dbgstr_w
(
outW
));
unsigned_tests
[
i
].
expected
,
wine_dbgstr_w
(
outW
));
...
@@ -1841,7 +1841,7 @@ todo_wine {
...
@@ -1841,7 +1841,7 @@ todo_wine {
{
{
r
=
doitW
(
FORMAT_MESSAGE_FROM_STRING
,
I64d
,
r
=
doitW
(
FORMAT_MESSAGE_FROM_STRING
,
I64d
,
0
,
0
,
outW
,
sizeof
(
outW
)
/
sizeof
(
WCHAR
),
signed_tests
[
i
].
number
);
0
,
0
,
outW
,
sizeof
(
outW
)
/
sizeof
(
WCHAR
),
signed_tests
[
i
].
number
);
MultiByteToWideChar
(
CP_ACP
,
0
,
signed_tests
[
i
].
expected
,
-
1
,
expW
,
sizeof
(
expW
));
MultiByteToWideChar
(
CP_ACP
,
0
,
signed_tests
[
i
].
expected
,
-
1
,
expW
,
sizeof
(
expW
)
/
sizeof
(
WCHAR
)
);
todo_wine
{
todo_wine
{
ok
(
!
lstrcmpW
(
outW
,
expW
),
"[%d] failed, expected %s, got %s
\n
"
,
i
,
ok
(
!
lstrcmpW
(
outW
,
expW
),
"[%d] failed, expected %s, got %s
\n
"
,
i
,
signed_tests
[
i
].
expected
,
wine_dbgstr_w
(
outW
));
signed_tests
[
i
].
expected
,
wine_dbgstr_w
(
outW
));
...
...
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