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-1882-gfbc85eb
Date: Sun, 20 Apr 2014 07:33:01 +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  fbc85eb42dc68e0ffbdf245a341d2aaaff0d360f (commit)
       via  f3504fa88e68170e4a8b1c6d0c60fec9cd2ec7e8 (commit)
       via  3949494b6b16f1776f4077ee6ab52c856980b4c3 (commit)
      from  3207cb256b82640608cba257d756caf77e7f3d4a (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=fbc85eb42dc68e0ffbdf245a341d2aaaff0d360f


commit fbc85eb42dc68e0ffbdf245a341d2aaaff0d360f
Author: Petter Reinholdtsen <address@hidden>
Date:   Sun Apr 20 09:23:07 2014 +0200

    Make sure to initialize member variable
    GnashWebcamPrivate::_webcamDevice to NULL in constructor (Coverity CID
    1149270).

diff --git a/libmedia/gst/VideoInputGst.cpp b/libmedia/gst/VideoInputGst.cpp
index 113d92a..b68f598 100644
--- a/libmedia/gst/VideoInputGst.cpp
+++ b/libmedia/gst/VideoInputGst.cpp
@@ -1621,6 +1621,7 @@ GnashWebcamPrivate::GnashWebcamPrivate() {
     _videoEnc = NULL;
     
     _pipelineIsPlaying = false;
+    _webcamDevice = NULL;
        
     _currentFormat = NULL;
     _eosTimeoutId = 0;

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


commit f3504fa88e68170e4a8b1c6d0c60fec9cd2ec7e8
Author: Petter Reinholdtsen <address@hidden>
Date:   Sun Apr 20 09:19:00 2014 +0200

    Make sure to initialize the unused member variable
    PreferencesDialog::_lcTraceToggle to NULL (Coverity CID 1149264).

diff --git a/gui/qt/Qt4Gui.cpp b/gui/qt/Qt4Gui.cpp
index b90dc4d..45006fd 100644
--- a/gui/qt/Qt4Gui.cpp
+++ b/gui/qt/Qt4Gui.cpp
@@ -766,6 +766,7 @@ namespace Qt4GuiPrefs {
 PreferencesDialog::PreferencesDialog(QWidget* parent)
     :
     QDialog(parent),
+    _lcTraceToggle(NULL),
     _rcfile(RcInitFile::getDefaultInstance())
 {
     setWindowTitle(_q("Gnash preferences"));

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


commit 3949494b6b16f1776f4077ee6ab52c856980b4c3
Author: Petter Reinholdtsen <address@hidden>
Date:   Sun Apr 20 09:14:46 2014 +0200

    Make sure to initialize Logfile::_network member to false alongside
    the rest of the member variables (Coverity CID 1149262).

diff --git a/libbase/log.cpp b/libbase/log.cpp
index 2920bdd..00958aa 100644
--- a/libbase/log.cpp
+++ b/libbase/log.cpp
@@ -294,6 +294,7 @@ LogFile::LogFile()
     :
     _verbose(0),
     _actiondump(false),
+    _network(false),
     _parserdump(false),
     _state(CLOSED),
     _stamp(true),

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

Summary of changes:
 gui/qt/Qt4Gui.cpp              |    1 +
 libbase/log.cpp                |    1 +
 libmedia/gst/VideoInputGst.cpp |    1 +
 3 files changed, 3 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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