From cb48dc46276573aa9b21be0eae3a75f46ae73d17 Mon Sep 17 00:00:00 2001 From: subhransu mohanty Date: Wed, 18 Jul 2018 14:36:47 +0900 Subject: [PATCH] lottie: fixed valgrind warning for unintialized variable Change-Id: I90e80585f3b217df86e948650e5f6128aef65ac3 --- src/lottie/lottieitem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lottie/lottieitem.cpp b/src/lottie/lottieitem.cpp index 86bda24..5bae4e9 100644 --- a/src/lottie/lottieitem.cpp +++ b/src/lottie/lottieitem.cpp @@ -395,6 +395,7 @@ VRle LOTLayerItem::maskRle(const VRect &clipRect) LOTLayerItem::LOTLayerItem(LOTLayerData *layerData):mLayerData(layerData), mParentLayer(nullptr), mPrecompLayer(nullptr), + mCombinedAlpha(0.0f), mFrameNo(-1), mDirtyFlag(DirtyFlagBit::All) { -- 2.34.1