From 64c3e193e9f7c5c4a2110a3bc5407640569858d7 Mon Sep 17 00:00:00 2001 From: "Yann Berthou (firetonton)" Date: Tue, 15 Dec 2015 17:27:12 +0100 Subject: [PATCH] Fix Uncaught ReferenceError: btype is not defined --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 5d57f9a..44d1151 100644 --- a/index.js +++ b/index.js @@ -314,7 +314,7 @@ function tinf_inflate_uncompressed_block(d) { /* inflate stream from source to dest */ function tinf_uncompress(source, dest) { var d = new Data(source, dest); - var bfinal, res; + var bfinal, btype, res; do { /* read final block flag */