From f329726fa4fc41f884a9424788b78dd13e5ae171 Mon Sep 17 00:00:00 2001 From: ansuz Date: Fri, 5 May 2017 09:12:16 +0200 Subject: [PATCH] fix undefined reference --- rpc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/rpc.js b/rpc.js index 84bda3b35..471236589 100644 --- a/rpc.js +++ b/rpc.js @@ -90,6 +90,7 @@ var isTooOld = function (time, now) { var expireSessions = function (Sessions) { var now = +new Date(); Object.keys(Sessions).forEach(function (key) { + var session = Sessions[key]; if (isTooOld(Sessions[key].atime, now)) { if (session.blobstage) { session.blobstage.close();