From 436620fff92b14a63f77fade5325f9e286f7d190 Mon Sep 17 00:00:00 2001 From: Nicola Murino Date: Mon, 15 Aug 2011 17:57:53 +0200 Subject: [PATCH] fix valgrind warning about Conditional jump or move depends on uninitialised value(s) --- ext/opencv/MotionCells.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/opencv/MotionCells.cpp b/ext/opencv/MotionCells.cpp index 7db9896e51..5223bc7f73 100644 --- a/ext/opencv/MotionCells.cpp +++ b/ext/opencv/MotionCells.cpp @@ -95,6 +95,8 @@ MotionCells::MotionCells () m_saveerrorcode = 0; m_alpha = 0.5; m_beta = 0.5; + m_useAlpha = false; + m_isVisible = false; }