From ae9aa6c8f6feaa85138ef7ca5a13b280923989a2 Mon Sep 17 00:00:00 2001 From: Seoyeon Kim Date: Wed, 2 Aug 2017 09:40:41 +0900 Subject: [PATCH] Fix SVACE issue - At linear-constrainer-impl.cpp:138, 'mValue.Size()' should change to 'mProgress.Size()'. Change-Id: I07799e08d0c5058dd09cd78f368be56b101c23cd Signed-off-by: Seoyeon Kim --- dali/internal/event/animation/linear-constrainer-impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dali/internal/event/animation/linear-constrainer-impl.cpp b/dali/internal/event/animation/linear-constrainer-impl.cpp index 41f2357..41f6248 100644 --- a/dali/internal/event/animation/linear-constrainer-impl.cpp +++ b/dali/internal/event/animation/linear-constrainer-impl.cpp @@ -135,7 +135,7 @@ Property::Value LinearConstrainer::GetDefaultProperty( Property::Index index ) c { Property::Value value( Property::ARRAY ); Property::Array* array = value.GetArray(); - size_t count( mValue.Size() ); + size_t count( mProgress.Size() ); if( array ) { -- 2.7.4