FLVPlaybackでのremoveASCuePointのバグ?

AS3のFLVPlayback関連のバグ?というかよくわからない挙動メモ。
動画にcueが何も入っていない状態で、removeASCuePointで全てのcueを消すと巻き戻しをするたびに0:00の時点でエラー発生。

TypeError: Error #1010: 条件は未定義であり、プロパティがありません。
	at fl.video::CuePointManager/resetASCuePointIndex()
	at fl.video::FLVPlayback/http://www.adobe.com/2007/flash/flvplayback/internal::handleVideoEvent()
	at flash.events::EventDispatcher/dispatchEventFunction()
	at flash.events::EventDispatcher/dispatchEvent()
	at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::doUpdateTime()
	at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::httpDoSeek()
	at flash.utils::Timer/_timerDispatch()
	at flash.utils::Timer/tick()

暫定対策としては、cueを1度いれた後はcueが0にならなように、
絶対に消さないcueをダミーでaddASCuePointしておけば大丈夫だった。
解決方法もとむ。