Skip to content
Snippets Groups Projects
Commit 8c51bcb8 authored by Biswapriyo Nath's avatar Biswapriyo Nath :fox: Committed by Alexandre Julliard
Browse files

mf/evr: Initialize variables which are checked conditionally.

parent edd00eb5
No related branches found
No related tags found
No related merge requests found
...@@ -2057,8 +2057,8 @@ static const IMFAttributesVtbl video_renderer_attributes_vtbl = ...@@ -2057,8 +2057,8 @@ static const IMFAttributesVtbl video_renderer_attributes_vtbl =
static HRESULT evr_create_object(IMFAttributes *attributes, void *user_context, IUnknown **obj) static HRESULT evr_create_object(IMFAttributes *attributes, void *user_context, IUnknown **obj)
{ {
struct video_renderer *object; struct video_renderer *object;
IMFVideoPresenter *presenter; IMFVideoPresenter *presenter = NULL;
IMFTransform *mixer; IMFTransform *mixer = NULL;
HRESULT hr; HRESULT hr;
TRACE("%p, %p, %p.\n", attributes, user_context, obj); TRACE("%p, %p, %p.\n", attributes, user_context, obj);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment