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-2131-gba505c9
Date: Tue, 10 Jun 2014 22:05:25 +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  ba505c9266bd3d2f4990eeb1fc56a8bac360402a (commit)
      from  ff6159b96718ddea32198355039280558ba94860 (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=ba505c9266bd3d2f4990eeb1fc56a8bac360402a


commit ba505c9266bd3d2f4990eeb1fc56a8bac360402a
Author: Bastiaan Jacques <address@hidden>
Date:   Tue Jun 10 23:53:23 2014 +0200

    Revert "Tidy up."
    
    This reverts commit ff6159b96718ddea32198355039280558ba94860.
    
    Unsupported features in GCC-4.6.

diff --git a/libcore/vm/ActionExec.cpp b/libcore/vm/ActionExec.cpp
index 842d8ef..be7b0b9 100644
--- a/libcore/vm/ActionExec.cpp
+++ b/libcore/vm/ActionExec.cpp
@@ -68,6 +68,10 @@ ActionExec::ActionExec(const Function& func, as_environment& 
newEnv,
     _scopeStack(func.getScopeStack()),
     _func(&func),
     _this_ptr(this_ptr),
+    _initialStackSize(0),
+    _originalTarget(nullptr),
+    _origExecSWFVersion(0),
+    _returning(false),
     _abortOnUnload(false),
     pc(func.getStartPC()),
     next_pc(pc),
@@ -106,6 +110,10 @@ ActionExec::ActionExec(const action_buffer& abuf, 
as_environment& newEnv,
     _scopeStack(),
     _func(nullptr),
     _this_ptr(nullptr),
+    _initialStackSize(0),
+    _originalTarget(nullptr),
+    _origExecSWFVersion(0),
+    _returning(false),
     _abortOnUnload(abortOnUnloaded),
     pc(0),
     next_pc(0),
diff --git a/libcore/vm/ActionExec.h b/libcore/vm/ActionExec.h
index 492f59d..4edd528 100644
--- a/libcore/vm/ActionExec.h
+++ b/libcore/vm/ActionExec.h
@@ -306,15 +306,15 @@ private:
        as_object* _this_ptr;
 
        /// Stack size at start of execution
-       size_t _initialStackSize = 0;
+       size_t _initialStackSize;
 
-       DisplayObject* _originalTarget = nullptr;
+       DisplayObject* _originalTarget;
 
-       int _origExecSWFVersion = 0;
+       int _origExecSWFVersion;
 
        std::stack<TryBlock> _tryList;
 
-       bool _returning = false;
+       bool _returning;
 
        bool _abortOnUnload;
 

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

Summary of changes:
 libcore/vm/ActionExec.cpp |    8 ++++++++
 libcore/vm/ActionExec.h   |    8 ++++----
 2 files changed, 12 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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