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
e59ac81c
Commit
e59ac81c
authored
Nov 29, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdmo: Don't use an interface pointer for an internal function.
parent
43130843
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
dmoreg.c
dlls/msdmo/dmoreg.c
+4
-6
No files found.
dlls/msdmo/dmoreg.c
View file @
e59ac81c
...
...
@@ -333,12 +333,10 @@ lend:
/**************************************************************************
* IEnumDMO_Destructor
* IEnumDMO
Impl
_Destructor
*/
static
BOOL
IEnumDMO
_Destructor
(
IEnumDMO
*
iface
)
static
BOOL
IEnumDMO
Impl_Destructor
(
IEnumDMOImpl
*
This
)
{
IEnumDMOImpl
*
This
=
impl_from_IEnumDMO
(
iface
);
TRACE
(
"%p
\n
"
,
This
);
if
(
This
->
hkey
)
...
...
@@ -418,7 +416,7 @@ static IEnumDMO * IEnumDMO_Constructor(
lerr:
if
(
!
ret
)
{
IEnumDMO
_Destructor
((
IEnumDMO
*
)
lpedmo
);
IEnumDMO
Impl_Destructor
(
lpedmo
);
HeapFree
(
GetProcessHeap
(),
0
,
lpedmo
);
lpedmo
=
NULL
;
}
...
...
@@ -477,7 +475,7 @@ static ULONG WINAPI IEnumDMO_fnRelease(IEnumDMO * iface)
if
(
!
refCount
)
{
IEnumDMO
_Destructor
((
IEnumDMO
*
)
This
);
IEnumDMO
Impl_Destructor
(
This
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
return
refCount
;
...
...
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