cocos2d-x-2.1.0 CCSequence only 1 action will crash

CCFiniteTimeAction *pAction1 = xxxx:create();
CCSequence::create(pAction1,NULL);

Will Crash….

In CCActionInterval.cpp line 197

should change to “while (pAction1 && args)” ?

Thank you, issue #1605 was created.
The solution needs to change
CCFiniteTimeAction* CCSequence::create(CCFiniteTimeAction pAction1, va_list args)
to
CCFiniteTimeAction CCSequence::createWithVariableList(CCFiniteTimeAction *pAction1, va_list args).