summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--postproc/postprocess_template.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/postproc/postprocess_template.c b/postproc/postprocess_template.c
index c32dd9d884..092d8c6626 100644
--- a/postproc/postprocess_template.c
+++ b/postproc/postprocess_template.c
@@ -3063,6 +3063,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int
memcpy(dstBlock, tempDst + dstStride, dstStride*(height-y));
else
{
+ int i;
for(i=0; i<height-y; i++)
{
memcpy(dstBlock + i*dstStride, tempDst + (i+1)*dstStride, width);