Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3bbb2caf
Commit
3bbb2caf
authored
Feb 20, 2023
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp/tests: Fix failure on Win10 1607.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=54534
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
parent
23b082ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
dbghelp.c
dlls/dbghelp/tests/dbghelp.c
+2
-1
No files found.
dlls/dbghelp/tests/dbghelp.c
View file @
3bbb2caf
...
...
@@ -537,7 +537,8 @@ static BOOL CALLBACK aggregate_cb(PCWSTR imagename, DWORD64 base, ULONG sz, PVOI
{
ok
(
!
ret
,
"Module %ls shouldn't be loaded
\n
"
,
imagename
);
ret
=
SymLoadModuleExW
(
aggregation
->
proc
,
NULL
,
imagename
,
NULL
,
base
,
sz
,
NULL
,
0
);
ok
(
ret
,
"SymLoadModuleExW failed on %ls: %lu
\n
"
,
imagename
,
GetLastError
());
ok
(
ret
||
broken
(
GetLastError
()
==
ERROR_SUCCESS
)
/* Win10/64 v1607 return this on bcryptPrimitives.DLL */
,
"SymLoadModuleExW failed on %ls: %lu
\n
"
,
imagename
,
GetLastError
());
ret
=
SymGetModuleInfoW64
(
aggregation
->
proc
,
base
,
&
im
);
ok
(
ret
,
"SymGetModuleInfoW64 failed: %lu
\n
"
,
GetLastError
());
}
...
...
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