From de0695e2c53e50040ad37b3e0c945011a18e18e8 Mon Sep 17 00:00:00 2001 From: Moinak Ghosh Date: Sat, 29 Jun 2013 19:13:22 +0530 Subject: [PATCH] Add missing init of rabin block size. --- pcompress.c | 1 + 1 file changed, 1 insertion(+) diff --git a/pcompress.c b/pcompress.c index 706c468..1c3f81f 100644 --- a/pcompress.c +++ b/pcompress.c @@ -2533,6 +2533,7 @@ create_pc_context(void) ctx->hide_mem_stats = 1; ctx->hide_cmp_stats = 1; ctx->enable_rabin_split = 1; + ctx->rab_blk_size = 1; return (ctx); }