hc
2024-02-19 890e1df1bec891d9203724541e81f8fbe5183388
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,