We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc3e2dc commit 9dc16feCopy full SHA for 9dc16fe
lib/dictBuilder/zdict.rs
@@ -741,10 +741,10 @@ unsafe fn ZDICT_countEStats(
741
mut srcSize: size_t,
742
notificationLevel: u32,
743
) {
744
- let blockSizeMax = (if ((1) << 17) < (1) << (*params).cParams.windowLog {
+ let blockSizeMax = (if ((1) << 17) < (1) << params.cParams.windowLog {
745
(1) << 17
746
} else {
747
- (1) << (*params).cParams.windowLog
+ (1) << params.cParams.windowLog
748
}) as size_t;
749
let mut cSize: size_t = 0;
750
if srcSize > blockSizeMax {
0 commit comments