Bernhard Kölbl : mf/tests: Remove duplicate call to MFStartup().
Module: wine Branch: master Commit: 07d0f1f0c0bbd744f5f107f82b702a891e41c2eb URL: https://gitlab.winehq.org/wine/wine/-/commit/07d0f1f0c0bbd744f5f107f82b702a8... Author: Bernhard Kölbl <besentv(a)gmail.com> Date: Wed Jun 7 14:42:00 2023 +0200 mf/tests: Remove duplicate call to MFStartup(). Signed-off-by: Bernhard Kölbl <besentv(a)gmail.com> --- dlls/mf/tests/mf.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/dlls/mf/tests/mf.c b/dlls/mf/tests/mf.c index 18488649523..fa538e8ad9f 100644 --- a/dlls/mf/tests/mf.c +++ b/dlls/mf/tests/mf.c @@ -4962,9 +4962,6 @@ static void test_sample_grabber_orientation(GUID subtype) grabber_callback->done_event = CreateEventW(NULL, FALSE, FALSE, NULL); ok(!!grabber_callback->done_event, "CreateEventW failed, error %lu\n", GetLastError()); - hr = MFStartup(MF_VERSION, MFSTARTUP_FULL); - ok(hr == S_OK, "Startup failure, hr %#lx.\n", hr); - hr = MFCreateMediaSession(NULL, &session); ok(hr == S_OK, "Unexpected hr %#lx.\n", hr);
participants (1)
-
Alexandre Julliard