Gabriel Ivăncescu : mshtml/tests: Fix performance leak in test_window.
Module: wine Branch: master Commit: aeab112a979e48a295e613f2cc1c4791b14b8b24 URL: https://gitlab.winehq.org/wine/wine/-/commit/aeab112a979e48a295e613f2cc1c479... Author: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> Date: Fri Jul 7 17:25:05 2023 +0300 mshtml/tests: Fix performance leak in test_window. Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com> --- dlls/mshtml/tests/dom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c index e5b4df7312c..6f62effa1dd 100644 --- a/dlls/mshtml/tests/dom.c +++ b/dlls/mshtml/tests/dom.c @@ -7376,7 +7376,7 @@ static void test_window(IHTMLDocument2 *doc) hres = IDispatch_QueryInterface(V_DISPATCH(&v), &IID_IHTMLPerformance, (void**)&performance); ok(hres == S_OK, "Could not get IHTMLPerformance iface: %08lx\n", hres); - + IDispatch_Release(V_DISPATCH(&v)); IHTMLPerformance_Release(performance); V_VT(&v) = VT_I2;
participants (1)
-
Alexandre Julliard