diff options
author | Timothy J Fontaine <tjfontaine@gmail.com> | 2013-05-23 13:57:59 -0700 |
---|---|---|
committer | Timothy J Fontaine <tjfontaine@gmail.com> | 2013-05-23 14:00:19 -0700 |
commit | dbe142c4eda0f15fad9fa85743dd11b81292fa8f (patch) | |
tree | 351e2b177918744c415b9ad4121195a51c445397 /deps | |
parent | 279361b27729118481ca2e2fecc2c3f930c56f41 (diff) | |
download | node-dbe142c4eda0f15fad9fa85743dd11b81292fa8f.tar.gz |
v8: fix GetLocalizedMessage usage
As is the backport of the abort on uncaught exception wouldn't compile
because we it was passing in `this` when it was unnecessary.
Diffstat (limited to 'deps')
-rw-r--r-- | deps/v8/src/isolate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/isolate.cc b/deps/v8/src/isolate.cc index 04a438bfa..5a5293eb7 100644 --- a/deps/v8/src/isolate.cc +++ b/deps/v8/src/isolate.cc @@ -1161,7 +1161,7 @@ void Isolate::DoThrow(Object* exception, MessageLocation* location) { (report_exception || can_be_caught_externally)) { fatal_exception_depth++; fprintf(stderr, "%s\n\nFROM\n", - *MessageHandler::GetLocalizedMessage(this, message_obj)); + *MessageHandler::GetLocalizedMessage(message_obj)); PrintCurrentStackTrace(stderr); OS::Abort(); } |