From dfe272090367992f9068940a7ef6bf04968974f2 Mon Sep 17 00:00:00 2001 From: "christian.plesner.hansen@gmail.com" Date: Wed, 10 Sep 2008 14:03:45 +0000 Subject: [PATCH] Fixed stack overflow crash. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@257 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/top.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/top.cc b/src/top.cc index 14d9c64..8b2d9b7 100644 --- a/src/top.cc +++ b/src/top.cc @@ -770,7 +770,7 @@ void Top::DoThrow(Object* exception, Handle message_obj; MessageLocation potential_computed_location; - if (is_caught_externally || report_exception) { + if (report_exception) { if (location == NULL) { // If no location was specified we use a computed one instead ComputeLocation(&potential_computed_location); -- 2.7.4