You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
unsigned long long constneededRBSize=windowSize+blockSize+ (WILDCOPY_OVERLENGTH*2);
1827
+
/* space is needed to store the litbuffer after the output of a given block without stomping the extDict of a previous run, as well as to cover both windows against wildcopy*/
1828
+
unsigned long long constneededRBSize=windowSize+blockSize+ZSTD_BLOCKSIZE_MAX+ (WILDCOPY_OVERLENGTH*2);
1828
1829
unsigned long long constneededSize=MIN(frameContentSize, neededRBSize);
1829
1830
size_tconstminRBSize= (size_t) neededSize;
1830
1831
RETURN_ERROR_IF((unsigned long long)minRBSize!=neededSize,
BYTElitExtraBuffer[ZSTD_LITBUFFEREXTRASIZE+WILDCOPY_OVERLENGTH]; /* literal buffer can be split between storage within dst and within this scratch buffer */
0 commit comments