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: Bastiaan Jacques
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1868-gc1083e3
Date: Sat, 19 Apr 2014 12:20:27 +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  c1083e3aa60168f74779e0679e3c919c92fb6081 (commit)
      from  070912d515c7702906569ef1856f3cd0ecec6e79 (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=c1083e3aa60168f74779e0679e3c919c92fb6081


commit c1083e3aa60168f74779e0679e3c919c92fb6081
Author: Bastiaan Jacques <address@hidden>
Date:   Sat Apr 19 14:15:19 2014 +0200

    Savannah #42145. Access the RunResources through the associated
    movie_root rather than the associated as_object, because the latter
    may have been GC'ed as part of the shutdown sequence, which
    invokes stopStreamSound().

diff --git a/libcore/MovieClip.cpp b/libcore/MovieClip.cpp
index b4d4157..5bb9f07 100644
--- a/libcore/MovieClip.cpp
+++ b/libcore/MovieClip.cpp
@@ -2098,8 +2098,7 @@ MovieClip::stopStreamSound()
 {
     if (m_sound_stream_id == -1) return; // nothing to do
 
-    sound::sound_handler* handler =
-        getRunResources(*getObject(this)).soundHandler();
+    sound::sound_handler* handler = stage().runResources().soundHandler();
 
     if (handler) {
         handler->stopStreamingSound(m_sound_stream_id);

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

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


hooks/post-receive
-- 
Gnash



reply via email to

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