Fixes Clang -Wuninitialized-const-pointer warning.
From: Jacek Caban jacek@codeweavers.com
Fixes Clang -Wuninitialized-const-pointer warning. --- dlls/quartz/tests/filtergraph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/quartz/tests/filtergraph.c b/dlls/quartz/tests/filtergraph.c index e33c79ceaf4..a70601060c5 100644 --- a/dlls/quartz/tests/filtergraph.c +++ b/dlls/quartz/tests/filtergraph.c @@ -3123,7 +3123,7 @@ static void test_connect_direct(void)
IFilterGraph2 *graph = create_graph(); IMediaControl *control; - AM_MEDIA_TYPE mt; + AM_MEDIA_TYPE mt = {0}; HRESULT hr; ULONG ref;