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
b20365ee
Commit
b20365ee
authored
Jul 22, 2014
by
Marcus Meissner
Committed by
Alexandre Julliard
Jul 22, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Remove useless NULL check (Coverity).
parent
877f1a75
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
performance.c
dlls/dmime/performance.c
+0
-6
No files found.
dlls/dmime/performance.c
View file @
b20365ee
...
...
@@ -388,9 +388,6 @@ static HRESULT WINAPI IDirectMusicPerformance8Impl_SendPMsg(IDirectMusicPerforma
return
E_POINTER
;
}
pItem
=
DMUS_PMSGToItem
(
pPMSG
);
if
(
NULL
==
pItem
)
{
return
E_POINTER
;
}
if
(
pItem
->
bInUse
)
{
return
DMUS_E_ALREADY_SENT
;
}
...
...
@@ -512,9 +509,6 @@ static HRESULT WINAPI IDirectMusicPerformance8Impl_FreePMsg(IDirectMusicPerforma
return
E_POINTER
;
}
pItem
=
DMUS_PMSGToItem
(
pPMSG
);
if
(
NULL
==
pItem
)
{
return
E_POINTER
;
}
if
(
pItem
->
bInUse
)
{
/** prevent for freeing PMsg in queue (ie to be processed) */
return
DMUS_E_CANNOT_FREE
;
...
...
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