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: Benjamin Wolsey
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1242-g7eabaf7
Date: Sun, 27 Nov 2011 12:41:24 +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  7eabaf79aeaaffe7deaeb7b4818a8855f8df1c96 (commit)
       via  2ad6d86104375356ca9e25ac5ca73620e80fcbea (commit)
       via  d62e09bb151f4ab174158162de6df7cdd12739fb (commit)
      from  99e0e60f5dfb653fdbf78a9bb2de23239e419653 (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=7eabaf79aeaaffe7deaeb7b4818a8855f8df1c96


commit 7eabaf79aeaaffe7deaeb7b4818a8855f8df1c96
Author: Benjamin Wolsey <address@hidden>
Date:   Sun Nov 27 13:37:52 2011 +0100

    Const.

diff --git a/libcore/movie_root.cpp b/libcore/movie_root.cpp
index ec2177d..604d7c2 100644
--- a/libcore/movie_root.cpp
+++ b/libcore/movie_root.cpp
@@ -1695,7 +1695,7 @@ movie_root::executeTimers()
 
     if (_intervalTimers.empty()) return;
 
-    unsigned long now = _vm.getTime();
+    const unsigned long now = _vm.getTime();
 
     typedef std::multimap<unsigned int, boost::shared_ptr<Timer> >
         ExpiredTimers;

http://git.savannah.gnu.org/cgit//commit/?id=2ad6d86104375356ca9e25ac5ca73620e80fcbea


commit 2ad6d86104375356ca9e25ac5ca73620e80fcbea
Author: Rob Savoye <address@hidden>
Date:   Tue Sep 13 09:36:17 2011 -0600

    Don't do anything if we have no timers.
    
    Commit amended to reduce comment verbosity and use empty().

diff --git a/libcore/movie_root.cpp b/libcore/movie_root.cpp
index 3840bbf..ec2177d 100644
--- a/libcore/movie_root.cpp
+++ b/libcore/movie_root.cpp
@@ -1690,9 +1690,11 @@ void
 movie_root::executeTimers()
 {
 #ifdef GNASH_DEBUG_TIMERS_EXPIRATION
-        log_debug("Checking %d timers for expiry", _intervalTimers.size());
+    log_debug("Checking %d timers for expiry", _intervalTimers.size());
 #endif
 
+    if (_intervalTimers.empty()) return;
+
     unsigned long now = _vm.getTime();
 
     typedef std::multimap<unsigned int, boost::shared_ptr<Timer> >

http://git.savannah.gnu.org/cgit//commit/?id=d62e09bb151f4ab174158162de6df7cdd12739fb


commit d62e09bb151f4ab174158162de6df7cdd12739fb
Author: Benjamin Wolsey <address@hidden>
Date:   Tue Sep 6 07:51:35 2011 +0200

    Remove useless PATH_MAX declaration.

diff --git a/plugin/npapi/plugin.cpp b/plugin/npapi/plugin.cpp
index 2272fd8..55bafc3 100644
--- a/plugin/npapi/plugin.cpp
+++ b/plugin/npapi/plugin.cpp
@@ -107,10 +107,6 @@
 #include <fstream>
 #include <sstream>
 
-#ifndef PATH_MAX
-#define PATH_MAX 1024
-#endif
-
 // Macro to prevent repeated logging calls for the same
 // event
 #define LOG_ONCE(x) { \

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

Summary of changes:
 libcore/movie_root.cpp  |    6 ++++--
 plugin/npapi/plugin.cpp |    4 ----
 2 files changed, 4 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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