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
14c6933f
Commit
14c6933f
authored
Sep 15, 2020
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xactengine3_7: Return S_OK from IXACT3Cue Destroy.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2e11e2f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
xact_dll.c
dlls/xactengine3_7/xact_dll.c
+5
-3
No files found.
dlls/xactengine3_7/xact_dll.c
View file @
14c6933f
...
...
@@ -73,13 +73,15 @@ static HRESULT WINAPI IXACT3CueImpl_GetState(IXACT3Cue *iface, DWORD *pdwState)
static
HRESULT
WINAPI
IXACT3CueImpl_Destroy
(
IXACT3Cue
*
iface
)
{
XACT3CueImpl
*
This
=
impl_from_IXACT3Cue
(
iface
);
HRESULT
hr
;
UINT
ret
;
TRACE
(
"(%p)
\n
"
,
iface
);
hr
=
FACTCue_Destroy
(
This
->
fact_cue
);
ret
=
FACTCue_Destroy
(
This
->
fact_cue
);
if
(
ret
!=
0
)
WARN
(
"FACTCue_Destroy returned %d
\n
"
,
ret
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
return
hr
;
return
S_OK
;
}
static
HRESULT
WINAPI
IXACT3CueImpl_SetMatrixCoefficients
(
IXACT3Cue
*
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