Commit 359eb9e5 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

winex11: Avoid dead assignment (scan-build).

parent 9b87b610
......@@ -1472,12 +1472,10 @@ static void xrender_blit( int op, Picture src_pict, Picture mask_pict, Picture d
if (width_src < 0)
{
x_src += width_src + 1;
width_src = -width_src;
}
if (height_src < 0)
{
y_src += height_src + 1;
height_src = -height_src;
}
if (width_dst < 0)
{
......
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