From 3998052ca67450ea8c03c5c639ac734380ca0d60 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Tue, 16 May 2017 11:23:59 +0300 Subject: [PATCH] dplayx/tests: Added missing assignment (Coverity). Signed-off-by: Nikolay Sivov Signed-off-by: Alistair Leslie-Hughes Signed-off-by: Alexandre Julliard --- dlls/dplayx/tests/dplayx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dplayx/tests/dplayx.c b/dlls/dplayx/tests/dplayx.c index e8737ab9bd4..015585dad9e 100644 --- a/dlls/dplayx/tests/dplayx.c +++ b/dlls/dplayx/tests/dplayx.c @@ -6808,7 +6808,7 @@ static HRESULT set_firewall( enum firewall_op op ) hr = INetFwPolicy_get_CurrentProfile( policy, &profile ); if (hr != S_OK) goto done; - INetFwProfile_get_AuthorizedApplications( profile, &apps ); + hr = INetFwProfile_get_AuthorizedApplications( profile, &apps ); ok( hr == S_OK, "got %08x\n", hr ); if (hr != S_OK) goto done; -- 2.11.4.GIT