Browse Source

node: clear nextTickQueue when using domains

When the domain specific code was reintroduced in 828f145 the
conditional to check and clear the nextTickQueue if many items had run
was not introduced. This allows for the application to run out of memory
if domains are being used in an infinite recursive loop.
v0.11.11-release
Trevor Norris 11 years ago
parent
commit
56ebf308dc
  1. 2
      src/node.js

2
src/node.js

@ -698,6 +698,8 @@
}
if (hasQueue)
_unloadAsyncQueue(tock);
if (1e4 < tickInfo[kIndex])
tickDone();
if (domain)
domain.exit();
}

Loading…
Cancel
Save