From 63c9685ea73f664183685179a33cb3fe5ba6783e Mon Sep 17 00:00:00 2001 From: Martin Koegler Date: Fri, 1 Mar 2013 15:39:12 +0100 Subject: [PATCH] Fix decrypting of arrays --- src/parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.js b/src/parser.js index 6b096868d..570203f5a 100644 --- a/src/parser.js +++ b/src/parser.js @@ -60,7 +60,7 @@ var Parser = (function ParserClosure() { this.shift(); var array = []; while (!isCmd(this.buf1, ']') && !isEOF(this.buf1)) - array.push(this.getObj()); + array.push(this.getObj(cipherTransform)); if (isEOF(this.buf1)) error('End of file inside array'); this.shift();