From 32272f9866eb6d46e4457190cc7562ade2aa2ca8 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Mon, 10 Sep 2018 15:51:53 -0700 Subject: [PATCH] removed temporary debug traces --- lib/lz4.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/lz4.c b/lib/lz4.c index dbda4f1..c68a7da 100644 --- a/lib/lz4.c +++ b/lib/lz4.c @@ -1583,14 +1583,12 @@ _copy_match: /* specific : partial decode : does not respect end parsing restrictions */ assert(op<=oend); if (partialDecoding && (cpy > oend-12)) { - DEBUGLOG(2, "match copy close to the end"); size_t const mlen = MIN(length, (size_t)(oend-op)); const BYTE* const matchEnd = match + mlen; BYTE* const copyEnd = op + mlen; if (matchEnd > op) { /* overlap copy */ while (op < copyEnd) *op++ = *match++; } else { - DEBUGLOG(2, "let's memcopy %zu bytes (non overlapping)", mlen); memcpy(op, match, mlen); } op = copyEnd; -- 2.7.4