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
7d14318c
Commit
7d14318c
authored
Apr 21, 2021
by
Andrey Gusev
Committed by
Alexandre Julliard
Apr 21, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Fix misplaced parentheses.
Signed-off-by:
Andrey Gusev
<
andrey.goosev@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
349b61cc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
lyricstrack.c
dlls/dmime/lyricstrack.c
+1
-1
tempotrack.c
dlls/dmime/tempotrack.c
+1
-1
timesigtrack.c
dlls/dmime/timesigtrack.c
+1
-1
No files found.
dlls/dmime/lyricstrack.c
View file @
7d14318c
...
@@ -320,7 +320,7 @@ static HRESULT WINAPI lyrics_IPersistStream_Load(IPersistStream *iface, IStream
...
@@ -320,7 +320,7 @@ static HRESULT WINAPI lyrics_IPersistStream_Load(IPersistStream *iface, IStream
if
(
!
stream
)
if
(
!
stream
)
return
E_POINTER
;
return
E_POINTER
;
if
((
hr
=
stream_get_chunk
(
stream
,
&
chunk
)
!=
S_OK
)
)
if
((
hr
=
stream_get_chunk
(
stream
,
&
chunk
)
)
!=
S_OK
)
return
hr
;
return
hr
;
if
(
chunk
.
id
==
FOURCC_LIST
&&
chunk
.
type
==
DMUS_FOURCC_LYRICSTRACK_LIST
)
if
(
chunk
.
id
==
FOURCC_LIST
&&
chunk
.
type
==
DMUS_FOURCC_LYRICSTRACK_LIST
)
...
...
dlls/dmime/tempotrack.c
View file @
7d14318c
...
@@ -339,7 +339,7 @@ static HRESULT WINAPI tempo_IPersistStream_Load(IPersistStream *iface, IStream *
...
@@ -339,7 +339,7 @@ static HRESULT WINAPI tempo_IPersistStream_Load(IPersistStream *iface, IStream *
if
(
!
stream
)
if
(
!
stream
)
return
E_POINTER
;
return
E_POINTER
;
if
((
hr
=
stream_get_chunk
(
stream
,
&
chunk
)
!=
S_OK
)
)
if
((
hr
=
stream_get_chunk
(
stream
,
&
chunk
)
)
!=
S_OK
)
return
hr
;
return
hr
;
if
(
chunk
.
id
!=
DMUS_FOURCC_TEMPO_TRACK
)
if
(
chunk
.
id
!=
DMUS_FOURCC_TEMPO_TRACK
)
return
DMUS_E_UNSUPPORTED_STREAM
;
return
DMUS_E_UNSUPPORTED_STREAM
;
...
...
dlls/dmime/timesigtrack.c
View file @
7d14318c
...
@@ -262,7 +262,7 @@ static HRESULT WINAPI time_IPersistStream_Load(IPersistStream *iface, IStream *s
...
@@ -262,7 +262,7 @@ static HRESULT WINAPI time_IPersistStream_Load(IPersistStream *iface, IStream *s
if
(
!
stream
)
if
(
!
stream
)
return
E_POINTER
;
return
E_POINTER
;
if
((
hr
=
stream_get_chunk
(
stream
,
&
chunk
)
!=
S_OK
)
)
if
((
hr
=
stream_get_chunk
(
stream
,
&
chunk
)
)
!=
S_OK
)
return
hr
;
return
hr
;
if
(
chunk
.
id
==
FOURCC_LIST
&&
chunk
.
type
==
DMUS_FOURCC_TIMESIGTRACK_LIST
)
if
(
chunk
.
id
==
FOURCC_LIST
&&
chunk
.
type
==
DMUS_FOURCC_TIMESIGTRACK_LIST
)
...
...
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