Check return code of inflateSetDictionary()

This commit is contained in:
Ľubor Illek 2019-01-14 17:54:51 +01:00
parent b4f1c205ef
commit a28d0181cb

View file

@ -153,7 +153,12 @@ function Inflate(options) {
} else if (toString.call(opt.dictionary) === '[object ArrayBuffer]') {
opt.dictionary = new Uint8Array(opt.dictionary);
}
if (opt.raw) zlib_inflate.inflateSetDictionary(this.strm, opt.dictionary); //In raw mode we need to set the dictionary early
if (opt.raw) { //In raw mode we need to set the dictionary early
status = zlib_inflate.inflateSetDictionary(this.strm, opt.dictionary);
if (status !== c.Z_OK) {
throw new Error(msg[status]);
}
}
}
}