The code below assets with the error "cannot exit non-entered context"
and occurs in v8 versions 3.1.8 and 3.6.2.   Can anyone indicate why?


{
    using namespace v8;

    Persistent<Context> context;

    {
        Locker l;
        HandleScope handle_scope;
        context = Persistent<Context>::New(Context::New());
        context->Enter();
    }

    {
        Locker l;
        context->Exit();
        context.Dispose();
    }

}

#
# Fatal error in v8::Context::Exit()
# Cannot exit non-entered context
#


-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users

Reply via email to