Check that after a weak callback, the handle is either dead or strong

BUG=346061
R=dcarney@chromium.org
LOG=y

Review URL: https://codereview.chromium.org/177943002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@19534 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
jochen@chromium.org 2014-02-25 09:27:05 +00:00
parent cb05cff594
commit 6eb2d35870

View File

@ -271,7 +271,7 @@ class GlobalHandles::Node {
} }
// Absence of explicit cleanup or revival of weak handle // Absence of explicit cleanup or revival of weak handle
// in most of the cases would lead to memory leak. // in most of the cases would lead to memory leak.
ASSERT(state() != NEAR_DEATH); CHECK(state() != NEAR_DEATH);
return true; return true;
} }