From a84370fcd87d03176981debb8dd98afda72956f8 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Wed, 8 Feb 2017 21:07:21 +0900 Subject: [PATCH] evas yuv convert - fix unused increments this removes useless yp1 += and yop2 += as they are SET int he loop. this fixes 1367510 and 1367511 --- src/lib/evas/common/evas_convert_yuv.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/evas/common/evas_convert_yuv.c b/src/lib/evas/common/evas_convert_yuv.c index 9d2e8fff17..d199ec5aa5 100644 --- a/src/lib/evas/common/evas_convert_yuv.c +++ b/src/lib/evas/common/evas_convert_yuv.c @@ -1648,8 +1648,6 @@ _evas_nv12torgb_raster(unsigned char **yuv, unsigned char *rgb, int w, int h) /* jump one line */ dp1 += sizeof (int) * w; dp2 += sizeof (int) * w; - yp1 += w; - yp2 += w; } }