winex11: Avoid dead assignment (scan-build).

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Alex Henrie 2019-09-15 23:40:54 -06:00 committed by Alexandre Julliard
parent 9b87b610eb
commit 359eb9e557
1 changed files with 0 additions and 2 deletions

View File

@ -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)
{