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-2021-gadb6d7d
Date: Tue, 20 May 2014 13:18:08 +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  adb6d7d7a3c8c85d1df08fff1e2b4af4ec108299 (commit)
      from  ddd580a95a92365c265d5f750e9b1bc13dc5473e (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=adb6d7d7a3c8c85d1df08fff1e2b4af4ec108299


commit adb6d7d7a3c8c85d1df08fff1e2b4af4ec108299
Author: Petter Reinholdtsen <address@hidden>
Date:   Tue May 20 15:08:23 2014 +0200

    Initialize SWFParser::_tag in constructor.
    
    Setting the value to zero (SWF::END) to make sure it always have a
    well known value.
    
    Fixes Coverity CID 1149273.

diff --git a/libcore/parser/SWFParser.h b/libcore/parser/SWFParser.h
index c7b50ac..b360b9d 100644
--- a/libcore/parser/SWFParser.h
+++ b/libcore/parser/SWFParser.h
@@ -59,7 +59,8 @@ public:
         _bytesRead(0),
         _tagOpen(false),
         _endRead(0),
-        _nextTagEnd(0)
+        _nextTagEnd(0),
+        _tag(SWF::END) // Initialized to zero to have a well known value
 
     {
     }

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

Summary of changes:
 libcore/parser/SWFParser.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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