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-1831-g051fbd8
Date: Tue, 14 Jan 2014 15:57:17 +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  051fbd88c17fad4af03d69ad6b0cd04e9ac3c70f (commit)
       via  fb6286348471d287efd3193b5f3a5fa4950f93f3 (commit)
      from  0f0dbd98e8787a386bf19ed6a50dbdf6364cf541 (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=051fbd88c17fad4af03d69ad6b0cd04e9ac3c70f


commit 051fbd88c17fad4af03d69ad6b0cd04e9ac3c70f
Author: Petter Reinholdtsen <address@hidden>
Date:   Tue Jan 14 16:57:12 2014 +0100

    Make sure to always initialize RemoveObjectTag::_id member field to
    zero in constructor (Coverity CID 1149286).

diff --git a/libcore/swf/RemoveObjectTag.h b/libcore/swf/RemoveObjectTag.h
index cc277a1..447aa73 100644
--- a/libcore/swf/RemoveObjectTag.h
+++ b/libcore/swf/RemoveObjectTag.h
@@ -46,7 +46,8 @@ public:
 
        RemoveObjectTag()
                :
-               DisplayListTag(-1)
+               DisplayListTag(-1),
+               _id(0)
        {}
 
        /// Read SWF::REMOVEOBJECT or SWF::REMOVEOBJECT2 

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


commit fb6286348471d287efd3193b5f3a5fa4950f93f3
Author: Petter Reinholdtsen <address@hidden>
Date:   Tue Jan 14 16:51:48 2014 +0100

    Make sure to initialize all member variables in the SoundInfoRecord
    constructor (Coverity CID 1149279).

diff --git a/libcore/swf/SoundInfoRecord.h b/libcore/swf/SoundInfoRecord.h
index 3165788..4dfd2ba 100644
--- a/libcore/swf/SoundInfoRecord.h
+++ b/libcore/swf/SoundInfoRecord.h
@@ -39,7 +39,13 @@ struct SoundInfoRecord
     /// This SoundInfoRecord is not valid until read() has been called.
     SoundInfoRecord()
         :
+        noMultiple(false),
+        hasEnvelope(false),
+        hasLoops(false),
+        hasOutPoint(false),
+        hasInPoint(false),
         loopCount(0),
+        stopPlayback(false),
         inPoint(0),
         outPoint(std::numeric_limits<unsigned int>::max())
     {}

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

Summary of changes:
 libcore/swf/RemoveObjectTag.h |    3 ++-
 libcore/swf/SoundInfoRecord.h |    6 ++++++
 2 files changed, 8 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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