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
e4bb3ae7
Commit
e4bb3ae7
authored
Aug 15, 2010
by
Alexandre Goujon
Committed by
Alexandre Julliard
Aug 17, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl: Fix AtlAxAttachControl wine check.
parent
d640d3fa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
atl_ax.c
dlls/atl/atl_ax.c
+3
-0
atl_ax.c
dlls/atl/tests/atl_ax.c
+0
-2
No files found.
dlls/atl/atl_ax.c
View file @
e4bb3ae7
...
...
@@ -1053,6 +1053,9 @@ HRESULT WINAPI AtlAxAttachControl(IUnknown* pControl, HWND hWnd, IUnknown** ppUn
*
ppUnkContainer
=
(
IUnknown
*
)
pUnkContainer
;
}
if
(
!
hWnd
)
return
S_FALSE
;
return
hr
;
}
...
...
dlls/atl/tests/atl_ax.c
View file @
e4bb3ae7
...
...
@@ -94,12 +94,10 @@ static void test_AtlAxAttachControl(void)
}
hr
=
pAtlAxAttachControl
(
pObj
,
NULL
,
NULL
);
todo_wine
ok
(
hr
==
S_FALSE
,
"Expected AtlAxAttachControl to return S_FALSE, got 0x%08x
\n
"
,
hr
);
pContainer
=
(
IUnknown
*
)
0xdeadbeef
;
hr
=
pAtlAxAttachControl
(
pObj
,
NULL
,
&
pContainer
);
todo_wine
ok
(
hr
==
S_FALSE
,
"Expected AtlAxAttachControl to return S_FALSE, got 0x%08x
\n
"
,
hr
);
ok
(
pContainer
!=
(
IUnknown
*
)
0xdeadbeef
&&
pContainer
!=
NULL
,
...
...
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