shithub: libvpx

Download patch

ref: 2b10528adcc6586793b42ea7ed7e2f523895be9b
parent: c8a88a7642f0f8a0e7599800441c7ba175469cf6
author: Johann <johannkoenig@google.com>
date: Wed May 9 06:26:07 EDT 2012

Remove redundant assignment

clang complains about self-assignment

Change-Id: Iead70eed0a960e84a4b167f67f05b05e2965b3b6

--- a/vp8/common/postproc.c
+++ b/vp8/common/postproc.c
@@ -441,7 +441,7 @@
 
         }
 
-        for (next = next; next < 256; next++)
+        for (; next < 256; next++)
             char_dist[next] = 0;
 
     }