| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index 67810ef1524303f463c9b3b3775d11796a3f62c7..654d41dc1d2256d8bec2ab6c9bb63d8b691ee7d2 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -3238,8 +3238,8 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_ObjectFreeze) {
|
| HandleScope scope(isolate);
|
| ASSERT(args.length() == 1);
|
| CONVERT_ARG_HANDLE_CHECKED(JSObject, object, 0);
|
| - Handle<Object> result = JSObject::Freeze(object);
|
| - RETURN_IF_EMPTY_HANDLE(isolate, result);
|
| + Handle<Object> result;
|
| + ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, JSObject::Freeze(object));
|
| return *result;
|
| }
|
|
|
|
|