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: Petter Reinholdtsen
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-2022-g107521b
Date: Tue, 20 May 2014 13:35:13 +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  107521bf1686a846ea25c362c0a09ac883e94264 (commit)
      from  adb6d7d7a3c8c85d1df08fff1e2b4af4ec108299 (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=107521bf1686a846ea25c362c0a09ac883e94264


commit 107521bf1686a846ea25c362c0a09ac883e94264
Author: Petter Reinholdtsen <address@hidden>
Date:   Tue May 20 15:27:12 2014 +0200

    Initialize ButtonRecord member variables in default constructor.
    
    Make sure the members always have well known values.  Set them to
    zero/false where applicable.
    
    Fixes Coverity CID 1149281.

diff --git a/libcore/swf/DefineButtonTag.h b/libcore/swf/DefineButtonTag.h
index 17950fe..002f7b0 100644
--- a/libcore/swf/DefineButtonTag.h
+++ b/libcore/swf/DefineButtonTag.h
@@ -56,7 +56,13 @@ public:
 
     ButtonRecord()
         :
-        _definitionTag(0)
+        _blendMode(0),
+        _hitTest(false),
+        _down(false),
+        _over(false),
+        _up(false),
+        _definitionTag(0),
+        _buttonLayer(0)
     {
     }
 

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

Summary of changes:
 libcore/swf/DefineButtonTag.h |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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