billiob pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=3d36d65dd8efa28e78a1a78d49fa36abc25ab415
commit 3d36d65dd8efa28e78a1a78d49fa36abc25ab415 Author: Boris Faure <[email protected]> Date: Sun Jun 29 23:11:15 2014 +0200 lz4: fix shadow issue @fix --- src/static_libs/lz4/lz4.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/static_libs/lz4/lz4.c b/src/static_libs/lz4/lz4.c index a1475dc..824f551 100644 --- a/src/static_libs/lz4/lz4.c +++ b/src/static_libs/lz4/lz4.c @@ -983,9 +983,9 @@ FORCE_INLINE int LZ4_decompress_generic( copySize = length+MINMATCH - copySize; if (copySize > (size_t)((char*)op-dest)) /* overlap */ { - BYTE* const cpy = op + copySize; - const BYTE* ref = (BYTE*)dest; - while (op < cpy) *op++ = *ref++; + BYTE* const cpy2 = op + copySize; + const BYTE* ref2 = (BYTE*)dest; + while (op < cpy2) *op++ = *ref2++; } else { --
