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

d2d1: Fix a copy-paste issue in EndDraw() (Coverity).

parent 958ed34f
......@@ -1409,7 +1409,7 @@ static HRESULT STDMETHODCALLTYPE d2d_d3d_render_target_EndDraw(ID2D1RenderTarget
if (tag1)
*tag1 = render_target->error.tag1;
if (tag2)
*tag1 = render_target->error.tag2;
*tag2 = render_target->error.tag2;
return render_target->error.code;
}
......
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