hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/lib/lz4/lz4hc_compress.c
....@@ -570,7 +570,7 @@
570570 *op++ = (BYTE) lastRun;
571571 } else
572572 *op++ = (BYTE)(lastRun<<ML_BITS);
573
- memcpy(op, anchor, iend - anchor);
573
+ LZ4_memcpy(op, anchor, iend - anchor);
574574 op += iend - anchor;
575575 }
576576
....@@ -663,7 +663,6 @@
663663 /* match referencing will resume from there */
664664 ctxPtr->nextToUpdate = ctxPtr->dictLimit;
665665 }
666
-EXPORT_SYMBOL(LZ4HC_setExternalDict);
667666
668667 static int LZ4_compressHC_continue_generic(
669668 LZ4_streamHC_t *LZ4_streamHCPtr,