summaryrefslogtreecommitdiff
path: root/test/simple/test-regress-GH-4015.js
Commit message (Collapse)AuthorAgeFilesLines
* fs: don't segfault on deeply recursive stat()Ben Noordhuis2012-09-141-0/+33
Check that the calls to Integer::New() and Date::New() succeed and bail out if they don't. V8 returns an empty handle on stack overflow. Trying to set the empty handle as a property on an object results in a NULL pointer dereference in release builds and an assert in debug builds. Fixes #4015.