[PATCH v2 0/1] MR3490: d3d11/tests: Fix typos in a test cleanup (Coverity).
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> -- v2: d3d11/tests: Fix typos in a test cleanup (Coverity). https://gitlab.winehq.org/wine/wine/-/merge_requests/3490
From: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> --- dlls/d3d11/tests/d3d11.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/d3d11/tests/d3d11.c b/dlls/d3d11/tests/d3d11.c index 9a907d907bb..166e6dd02db 100644 --- a/dlls/d3d11/tests/d3d11.c +++ b/dlls/d3d11/tests/d3d11.c @@ -35096,9 +35096,9 @@ static void test_shared_resource(D3D_FEATURE_LEVEL feature_level) test_done: if (keyed_mutex) IDXGIKeyedMutex_Release(keyed_mutex); - if (tex) - IDXGIResource_Release(res); if (res) + IDXGIResource_Release(res); + if (tex) ID3D11Texture2D_Release(tex); if (res1) IDXGIResource1_Release(res1); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/3490
Hi, It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated. The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=135789 Your paranoid android. === build (build log) === error: patch failed: dlls/d3d11/tests/d3d11.c:35096 Task: Patch failed to apply === debian11 (build log) === error: patch failed: dlls/d3d11/tests/d3d11.c:35096 Task: Patch failed to apply === debian11b (build log) === error: patch failed: dlls/d3d11/tests/d3d11.c:35096 Task: Patch failed to apply
participants (3)
-
Marvin -
Nikolay Sivov -
Nikolay Sivov (@nsivov)