mirror of
https://github.com/danbulant/node-x11
synced 2026-06-14 12:11:26 +00:00
global variable leak test
This commit is contained in:
parent
ca5efc1941
commit
3eaaadd0da
1 changed files with 2 additions and 2 deletions
|
|
@ -131,9 +131,9 @@ XClient.prototype.importRequestsFromTemplates = function(target, reqs)
|
|||
var format = reqTemplate[0];
|
||||
var requestArguments = [];
|
||||
|
||||
for (a = 0; a < reqTemplate[1].length; ++a)
|
||||
for (var a = 0; a < reqTemplate[1].length; ++a)
|
||||
requestArguments.push(reqTemplate[1][a]);
|
||||
for (a in args)
|
||||
for (var a in args)
|
||||
requestArguments.push(args[a]);
|
||||
|
||||
if (callback)
|
||||
|
|
|
|||
Loading…
Reference in a new issue