gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_start-


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_start-106-g93a1d9e
Date: Tue, 22 Feb 2011 07:58:49 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  93a1d9ee8edbd43248c33a1a39da2340640719d4 (commit)
      from  e28884817138ff67ea30dd622cd180d3af659123 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=93a1d9ee8edbd43248c33a1a39da2340640719d4


commit 93a1d9ee8edbd43248c33a1a39da2340640719d4
Author: Sandro Santilli <address@hidden>
Date:   Tue Feb 22 08:58:18 2011 +0100

    Report url of the movie containing the action block being executed when 
hitting limits.

diff --git a/libcore/vm/ActionExec.cpp b/libcore/vm/ActionExec.cpp
index 24927f1..f0009a5 100644
--- a/libcore/vm/ActionExec.cpp
+++ b/libcore/vm/ActionExec.cpp
@@ -295,7 +295,7 @@ ActionExec::operator()()
                 // Check for script limits hit. 
                 // See: http://www.gnashdev.org/wiki/index.php/ScriptLimits
                 if (clock.elapsed() > maxTime) {
-                    boost::format fmt(_("Time exceeded"));
+                    boost::format fmt = boost::format(_("Time exceeded while 
executing code in %1%")) % code.getMovieDefinition().get_url();
                     throw ActionLimitException(fmt.str());
                 }
                 // TODO: Run garbage collector ? If stack isn't too big ?

-----------------------------------------------------------------------

Summary of changes:
 libcore/vm/ActionExec.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]