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-1997-g4e5dcad
Date: Sun, 18 May 2014 19:39:27 +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  4e5dcad644e76ecb89836e9cf939b2e7698f2238 (commit)
       via  3d1d0213f1e749f91b3c9e53510128b4ed35c693 (commit)
      from  2824ebbcca627bca43e642622d9bc1b5b7f69162 (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=4e5dcad644e76ecb89836e9cf939b2e7698f2238


commit 4e5dcad644e76ecb89836e9cf939b2e7698f2238
Author: Petter Reinholdtsen <address@hidden>
Date:   Sun May 18 21:37:48 2014 +0200

    Make sure to initialize TestState::laststate in constructor.
    
    Picked FAILED as the start value, as this is the "zero" value of the
    enum and the value that most likely is present already in memory.
    
    Fixes Coverity CID 1155097.

diff --git a/testsuite/dejagnu.h b/testsuite/dejagnu.h
index 6742ffd..50903c4 100644
--- a/testsuite/dejagnu.h
+++ b/testsuite/dejagnu.h
@@ -192,6 +192,7 @@ class TestState {
       xpassed = 0;
       xfailed = 0;
       unresolve = 0;
+      laststate = FAILED;
     }
 
   ~TestState (void) { totals(); }

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


commit 3d1d0213f1e749f91b3c9e53510128b4ed35c693
Author: Petter Reinholdtsen <address@hidden>
Date:   Sun May 18 21:23:59 2014 +0200

    Make sure to initialize member variables _x and _y in MovieTester 
constructor.
    
    Fixes Coverity CID 1155096.

diff --git a/testsuite/MovieTester.cpp b/testsuite/MovieTester.cpp
index 67ae51c..da10bb5 100644
--- a/testsuite/MovieTester.cpp
+++ b/testsuite/MovieTester.cpp
@@ -88,6 +88,8 @@ MovieTester::MovieTester(const std::string& url)
     :
     _forceRedraw(true),
     _samplesFetched(0)
+    , _x(0)
+    , _y(0)
 {
     
 #ifdef USE_MEDIA

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

Summary of changes:
 testsuite/MovieTester.cpp |    2 ++
 testsuite/dejagnu.h       |    1 +
 2 files changed, 3 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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