diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-19 16:26:30 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-19 16:53:14 +0000 |
commit | d5c30421ca603e9f0acc75ebef0c6fb7fc9ec1de (patch) | |
tree | 91136412939f3dc29c5081b41a1e3c3e03f88b78 /slideshow | |
parent | aea2c1d59ed38f071ba0965dd3ffe767360cb428 (diff) |
coverity#738842 Uninitialized scalar field
Change-Id: Ic362a2e18452920f1474880fc1c2aac8cc8f56b0
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/animationnodes/basecontainernode.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/slideshow/source/engine/animationnodes/basecontainernode.cxx b/slideshow/source/engine/animationnodes/basecontainernode.cxx index b2896aadaea7..fc0a889b8a25 100644 --- a/slideshow/source/engine/animationnodes/basecontainernode.cxx +++ b/slideshow/source/engine/animationnodes/basecontainernode.cxx @@ -44,6 +44,7 @@ BaseContainerNode::BaseContainerNode( : BaseNode( xNode, rParent, rContext ), maChildren(), mnFinishedChildren(0), + mnLeftIterations(0), mbDurationIndefinite( isIndefiniteTiming( xNode->getEnd() ) && isIndefiniteTiming( xNode->getDuration() ) ) { |