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
43e5f9e4
Commit
43e5f9e4
authored
Sep 09, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Check that the 32/64 syskind matches when getting a typelib from the cache.
Fixes test failures on 64-bit.
parent
524cc633
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
typelib.c
dlls/oleaut32/typelib.c
+2
-1
No files found.
dlls/oleaut32/typelib.c
View file @
43e5f9e4
...
...
@@ -7966,7 +7966,8 @@ static HRESULT WINAPI ITypeInfo_fnGetRefTypeInfo(
&&
IsEqualIID
(
&
entry
->
guid
->
guid
,
TLB_get_guid_null
(
ref_type
->
pImpTLInfo
->
guid
))
&&
entry
->
ver_major
==
ref_type
->
pImpTLInfo
->
wVersionMajor
&&
entry
->
ver_minor
==
ref_type
->
pImpTLInfo
->
wVersionMinor
&&
entry
->
set_lcid
==
ref_type
->
pImpTLInfo
->
lcid
)
&&
entry
->
set_lcid
==
ref_type
->
pImpTLInfo
->
lcid
&&
entry
->
syskind
==
This
->
pTypeLib
->
syskind
)
{
TRACE
(
"got cached %p
\n
"
,
entry
);
pTLib
=
(
ITypeLib
*
)
&
entry
->
ITypeLib2_iface
;
...
...
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