Commit dcdf7d6f authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

rpcrt4/tests: Added missing assignment (Coverity).

parent 1f97ef8e
...@@ -1146,7 +1146,7 @@ static HRESULT set_firewall( enum firewall_op op ) ...@@ -1146,7 +1146,7 @@ static HRESULT set_firewall( enum firewall_op op )
hr = INetFwPolicy_get_CurrentProfile( policy, &profile ); hr = INetFwPolicy_get_CurrentProfile( policy, &profile );
if (hr != S_OK) goto done; 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 ); ok( hr == S_OK, "got %08x\n", hr );
if (hr != S_OK) goto done; if (hr != S_OK) goto done;
......
...@@ -1875,7 +1875,7 @@ static HRESULT set_firewall( enum firewall_op op ) ...@@ -1875,7 +1875,7 @@ static HRESULT set_firewall( enum firewall_op op )
hr = INetFwPolicy_get_CurrentProfile( policy, &profile ); hr = INetFwPolicy_get_CurrentProfile( policy, &profile );
if (hr != S_OK) goto done; 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 ); ok( hr == S_OK, "got %08x\n", hr );
if (hr != S_OK) goto done; if (hr != S_OK) goto done;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment