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-1998-g8b48521
Date: Sun, 18 May 2014 20:31:36 +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  8b485210ec68de8777f90b09b358986b6f73a324 (commit)
      from  4e5dcad644e76ecb89836e9cf939b2e7698f2238 (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=8b485210ec68de8777f90b09b358986b6f73a324


commit 8b485210ec68de8777f90b09b358986b6f73a324
Author: Petter Reinholdtsen <address@hidden>
Date:   Sun May 18 22:31:26 2014 +0200

    Make sure to initialize member array Memory::_checkpoint in constructor.
    
    Fix Coverity CID 1149263.

diff --git a/libbase/memory.cpp b/libbase/memory.cpp
index 86a6832..d6c4403 100644
--- a/libbase/memory.cpp
+++ b/libbase/memory.cpp
@@ -49,6 +49,7 @@ Memory::Memory()
       _info(0),
       _size(DATALOG_SIZE),
       _index(0)
+    , _checkpoint()
 {
 //    GNASH_REPORT_FUNCTION;
 }
@@ -56,6 +57,7 @@ Memory::Memory()
 
 Memory::Memory(size_t size) 
     : _collecting(false)
+    , _checkpoint()
 {
 //    GNASH_REPORT_FUNCTION;
     _size = size;

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

Summary of changes:
 libbase/memory.cpp |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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