Fix decrypting of arrays
This commit is contained in:
parent
4a45efa718
commit
63c9685ea7
@ -60,7 +60,7 @@ var Parser = (function ParserClosure() {
|
|||||||
this.shift();
|
this.shift();
|
||||||
var array = [];
|
var array = [];
|
||||||
while (!isCmd(this.buf1, ']') && !isEOF(this.buf1))
|
while (!isCmd(this.buf1, ']') && !isEOF(this.buf1))
|
||||||
array.push(this.getObj());
|
array.push(this.getObj(cipherTransform));
|
||||||
if (isEOF(this.buf1))
|
if (isEOF(this.buf1))
|
||||||
error('End of file inside array');
|
error('End of file inside array');
|
||||||
this.shift();
|
this.shift();
|
||||||
|
Loading…
Reference in New Issue
Block a user