Merge pull request #16107 from cezheng/fix/EaseExponentialOut_clone_crash

fix crash in EaseExponentialOut::clone()
This commit is contained in:
minggo 2016-07-13 16:32:48 +08:00 committed by GitHub
commit c5c846f6e1
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ EaseExponentialOut* EaseExponentialOut::clone() const
{ {
// no copy constructor // no copy constructor
if (_inner) if (_inner)
EaseExponentialOut::create(_inner->clone()); return EaseExponentialOut::create(_inner->clone());
return nullptr; return nullptr;
} }