From: Bernhard Kölbl besentv@gmail.com
Signed-off-by: Bernhard Kölbl besentv@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 010c8b2bd12..71fd2435d32 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);
This merge request was approved by Nikolay Sivov.
In addition to that, it's better to do MFShutdown() after win_skip() in this function, or jump to its cleanup section.
On Wed Jun 7 19:09:39 2023 +0000, Nikolay Sivov wrote:
In addition to that, it's better to do MFShutdown() after win_skip() in this function, or jump to its cleanup section.
Right, I didn't consider the skip.