CCAssert Problem

Hello…

i have a problem with the CCAssert “reference count should greater than 0” on CCObject line 86.

My App works very well on iPad 2 and under all of the Android Test Devices but not under the Samsung Galaxy Tab 10.1N

the assert message thrown in line “m_pIntroSprite = CCSprite::createWithSpriteFrameName(”intro0001.png" );"

@
CCSpriteFrameCache::sharedSpriteFrameCache()>addSpriteFramesWithFile;
m_pIntroSpriteBatchNode = CCSpriteBatchNode::create;
m_pIntroSpriteBatchNode
>setPosition(ccp( l_ScreenSize.width / 2, l_ScreenSize.height / 2 ));
m_pIntroSprite = CCSprite::createWithSpriteFrameName( “intro0001.png” );
this~~>addChild;
m_pIntroSpriteBatchNode~~>addChild( m_pIntroSprite );
@

Please help me…