Skip to content

Commit

Permalink
zstd: avoid large stacks
Browse files Browse the repository at this point in the history
  • Loading branch information
maharmstone committed Jun 12, 2021
1 parent cf152da commit ee9f4a7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/zstd/zstd_lazy.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
#include "zstd_compress_internal.h"
#include "zstd_lazy.h"


/*-*************************************
* Binary Tree search
***************************************/
Expand Down Expand Up @@ -1513,7 +1512,7 @@ FORCE_INLINE_TEMPLATE size_t ZSTD_RowFindBestMatch_extDict_selectRowLog (
*********************************/
typedef enum { search_hashChain=0, search_binaryTree=1, search_rowHash=2 } searchMethod_e;

FORCE_INLINE_TEMPLATE size_t
size_t
ZSTD_compressBlock_lazy_generic(
ZSTD_matchState_t* ms, seqStore_t* seqStore,
U32 rep[ZSTD_REP_NUM],
Expand Down

0 comments on commit ee9f4a7

Please sign in to comment.