19 Jul
2025
19 Jul
'25
11:30 a.m.
From: Jacek Caban <jacek(a)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; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8603