Index: src/ic.cc |
diff --git a/src/ic.cc b/src/ic.cc |
index 7482830ae0bdf990cb8acecaa93b0efb59eb70b9..4f75ade0e8edd96f0b8fad7cbae1125543e171bf 100644 |
--- a/src/ic.cc |
+++ b/src/ic.cc |
@@ -804,6 +804,7 @@ MaybeObject* KeyedCallIC::LoadFunction(State state, |
HandleScope scope; |
Handle<Object> result = GetProperty(object, key); |
+ RETURN_IF_EMPTY_HANDLE(result); |
Martin Maly
2011/02/24 17:33:49
Of course ... with my recent change the exceptions
|
// Make receiver an object if the callee requires it. Strict mode or builtin |
// functions do not wrap the receiver, non-strict functions and objects |