Revision: 14869
Author: dcar...@chromium.org
Date: Wed May 29 01:33:46 2013
Log: fix return out of handlescope in NestedLockers

R=jkumme...@chromium.org
BUG=

Review URL: https://codereview.chromium.org/16076004
http://code.google.com/p/v8/source/detail?r=14869

Modified:
 /branches/bleeding_edge/test/cctest/test-api.cc

=======================================
--- /branches/bleeding_edge/test/cctest/test-api.cc     Tue May 28 03:36:21 2013
+++ /branches/bleeding_edge/test/cctest/test-api.cc     Wed May 29 01:33:46 2013
@@ -12056,7 +12056,7 @@
 v8::HandleScope scope(args.GetIsolate());
 v8::Handle<Value> value = CompileRun(code);
 CHECK(value.IsEmpty());
- return v8_str("foo");
+ return scope.Close(v8_str("foo"));
 }
 }


--
--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to