fixed wrong var

This commit is contained in:
barisusakli
2014-12-02 16:51:14 -05:00
parent 7a5383748c
commit 83a679fc15

View File

@@ -301,8 +301,8 @@ function closeHandles() {
for(var h in handles) {
var handle = handles[h];
if (handle) {
h.close();
delete handles[handle];
handle.close();
delete handles[h];
}
}
}