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_final-


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-2193-gc5b657f
Date: Mon, 17 Aug 2015 08:22:47 +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  c5b657fc8486dba58737fcb8ce26db50dbe331a0 (commit)
      from  b139ce7e4c116375674ff60d0b7961a805ad5594 (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=c5b657fc8486dba58737fcb8ce26db50dbe331a0


commit c5b657fc8486dba58737fcb8ce26db50dbe331a0
Author: Richard Wilbur <address@hidden>
Date:   Mon Aug 17 10:22:05 2015 +0200

    Fix dereference of invalid iterator introduced by 25395ad8

diff --git a/libcore/movie_root.cpp b/libcore/movie_root.cpp
index 63862e9..d3c8fdb 100644
--- a/libcore/movie_root.cpp
+++ b/libcore/movie_root.cpp
@@ -1922,7 +1922,7 @@ movie_root::callExternalCallback(const std::string &name,
         if (instance_iterator == _externalCallbackInstances.end()) {
             instance = as_value((as_object*)NULL).to_object(getVM());
         }
-        instance = instance_iterator->second;
+        else instance = instance_iterator->second;
 
         // Populate function call arguments
         for (std::vector<as_value>::const_iterator args_iterator

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

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