2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-05 23:53:27 +00:00

Fixed offset checker array initialisation

This commit is contained in:
n1474335
2017-05-05 15:54:59 +00:00
parent 5b03a84be8
commit 508a371175

View File

@@ -385,7 +385,7 @@ const StrUtils = {
runOffsetChecker: function(input, args) {
let sampleDelim = args[0],
samples = input.split(sampleDelim),
outputs = [],
outputs = new Array(samples.length),
i = 0,
s = 0,
match = false,