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
8e9a0511
Commit
8e9a0511
authored
Jul 24, 2018
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Aug 14, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
amstream: Use the ARRAY_SIZE() macro.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
22184d12
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
main.c
dlls/amstream/main.c
+2
-2
amstream.c
dlls/amstream/tests/amstream.c
+1
-1
No files found.
dlls/amstream/main.c
View file @
8e9a0511
...
...
@@ -174,13 +174,13 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
&&
!
IsEqualGUID
(
&
IID_IUnknown
,
riid
)
)
return
E_NOINTERFACE
;
for
(
i
=
0
;
i
<
sizeof
(
object_creation
)
/
sizeof
(
object_creation
[
0
]
);
i
++
)
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
object_creation
);
i
++
)
{
if
(
IsEqualGUID
(
object_creation
[
i
].
clsid
,
rclsid
))
break
;
}
if
(
i
==
sizeof
(
object_creation
)
/
sizeof
(
object_creation
[
0
]
))
if
(
i
==
ARRAY_SIZE
(
object_creation
))
{
FIXME
(
"%s: no class found.
\n
"
,
debugstr_guid
(
rclsid
));
return
CLASS_E_CLASSNOTAVAILABLE
;
...
...
dlls/amstream/tests/amstream.c
View file @
8e9a0511
...
...
@@ -479,7 +479,7 @@ static void test_media_streams(void)
ok
(
!
lstrcmpW
(
info
.
achName
,
id
),
"Pin name is %s instead of %s
\n
"
,
wine_dbgstr_w
(
info
.
achName
),
wine_dbgstr_w
(
id
));
hr
=
IPin_EnumMediaTypes
(
pins
[
i
],
&
enum_media_types
);
ok
(
hr
==
S_OK
,
"IPin_EnumMediaTypes returned: %x
\n
"
,
hr
);
hr
=
IEnumMediaTypes_Next
(
enum_media_types
,
sizeof
(
media_types
)
/
sizeof
(
media_types
[
0
]
),
media_types
,
&
nb_media_types
);
hr
=
IEnumMediaTypes_Next
(
enum_media_types
,
ARRAY_SIZE
(
media_types
),
media_types
,
&
nb_media_types
);
ok
(
SUCCEEDED
(
hr
),
"IEnumMediaTypes_Next returned: %x
\n
"
,
hr
);
ok
(
nb_media_types
>
0
,
"nb_media_types should be >0
\n
"
);
IEnumMediaTypes_Release
(
enum_media_types
);
...
...
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