Comment #3 on issue 1432 by [email protected]: Isolate memory leak?
http://code.google.com/p/v8/issues/detail?id=1432
You can narrow this down further by just creating a scoped isolate and
initialising v8, so its something to do with initialization (which is
called internally if you dont call it yourself):
v8::Isolate* isolate = v8::Isolate::New();
{
v8::Isolate::Scope iscope(isolate);
v8::V8::Initialize();
}
isolate->Dispose();
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev