From 102a0743326a03cd1a1202ceda21e175b7d3575c Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Tue, 20 Feb 2024 01:20:52 +0000 Subject: [PATCH] add new system file --- kernel/lib/lz4/lz4hc_compress.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/kernel/lib/lz4/lz4hc_compress.c b/kernel/lib/lz4/lz4hc_compress.c index 176f03b..e7ac869 100644 --- a/kernel/lib/lz4/lz4hc_compress.c +++ b/kernel/lib/lz4/lz4hc_compress.c @@ -570,7 +570,7 @@ *op++ = (BYTE) lastRun; } else *op++ = (BYTE)(lastRun<<ML_BITS); - memcpy(op, anchor, iend - anchor); + LZ4_memcpy(op, anchor, iend - anchor); op += iend - anchor; } @@ -663,7 +663,6 @@ /* match referencing will resume from there */ ctxPtr->nextToUpdate = ctxPtr->dictLimit; } -EXPORT_SYMBOL(LZ4HC_setExternalDict); static int LZ4_compressHC_continue_generic( LZ4_streamHC_t *LZ4_streamHCPtr, -- Gitblit v1.6.2