Skip to content

Commit

Permalink
Fix undeclared variable
Browse files Browse the repository at this point in the history
  • Loading branch information
nzalev committed Jun 22, 2021
1 parent b3b331b commit 274221c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amt/amt-redir-mesh.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
var status = obj.amtaccumulator.charCodeAt(1);
var authType = obj.amtaccumulator.charCodeAt(4);
var authData = [];
for (i = 0; i < authDataLen; i++) { authData.push(obj.amtaccumulator.charCodeAt(9 + i)); }
for (var i = 0; i < authDataLen; i++) { authData.push(obj.amtaccumulator.charCodeAt(9 + i)); }
var authDataBuf = obj.amtaccumulator.substring(9, 9 + authDataLen);
cmdsize = 9 + authDataLen;
if (authType == 0) {
Expand Down

0 comments on commit 274221c

Please sign in to comment.