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: Rob Savoye
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1381-g8efba96
Date: Wed, 11 Jan 2012 20:17:58 +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  8efba963be1e3c0ba4c957d049f42b99f1b1c88d (commit)
      from  cfa1905a88ae44180c832868a3a19290caf855ca (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=8efba963be1e3c0ba4c957d049f42b99f1b1c88d


commit 8efba963be1e3c0ba4c957d049f42b99f1b1c88d
Author: Rob Savoye <address@hidden>
Date:   Wed Jan 11 13:17:44 2012 -0700

    advance all characters before notifying them of loads.

diff --git a/libcore/movie_root.cpp b/libcore/movie_root.cpp
index c8865d5..8164e9a 100644
--- a/libcore/movie_root.cpp
+++ b/libcore/movie_root.cpp
@@ -2053,10 +2053,12 @@ movie_root::advanceLiveChars()
                 _liveChars.size());
 #endif
 
-    // Iterate through the array once, instead of twice like it used to be.
+    // Advance all characters, then notify them.
     LiveChars::iterator it;
     for (it=_liveChars.begin(); it != _liveChars.end(); ++it) {
         advanceLiveChar(*it);
+    }
+    for (it=_liveChars.begin(); it != _liveChars.end(); ++it) {
         notifyLoad(*it);
     }
 }

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

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


hooks/post-receive
-- 
Gnash



reply via email to

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