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: Bastiaan Jacques
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_start-430-gc291348
Date: Wed, 30 Mar 2011 01:39:41 +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  c2913487c8053ab649eae6a069e43b97b050712d (commit)
      from  d506b1977b40ef8cd8b6fef4b20f3ef6ad6e0b91 (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=c2913487c8053ab649eae6a069e43b97b050712d


commit c2913487c8053ab649eae6a069e43b97b050712d
Author: Bastiaan Jacques <address@hidden>
Date:   Wed Mar 30 03:38:52 2011 +0200

    Fix off-by-one that causes an invalid opcode to read past the end of the 
handlers vector. Fixes bug #32950.

diff --git a/libcore/vm/ASHandlers.cpp b/libcore/vm/ASHandlers.cpp
index 2137b01..089e947 100644
--- a/libcore/vm/ASHandlers.cpp
+++ b/libcore/vm/ASHandlers.cpp
@@ -242,7 +242,7 @@ ActionHandler::execute(ActionExec& thread) const
 
 SWFHandlers::SWFHandlers()
     :
-    _handlers(255)
+    _handlers(256)
 {
 
     _handlers[ACTION_END] = ActionHandler(ACTION_END, ActionEnd);

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

Summary of changes:
 libcore/vm/ASHandlers.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]