Commit b34d1cf3 authored by dcarney@chromium.org's avatar dcarney@chromium.org

release callback table memory in ~Isolate

R=svenpanne@chromium.org
BUG=

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15075 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 29abaf4a
......@@ -2007,6 +2007,9 @@ Isolate::~Isolate() {
delete external_reference_table_;
external_reference_table_ = NULL;
delete callback_table_;
callback_table_ = NULL;
#ifdef ENABLE_DEBUGGER_SUPPORT
delete debugger_;
debugger_ = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment