Add fix to Liberty parser to skip extra semicolon.

This commit is contained in:
Alan Mishchenko 2015-07-06 07:57:18 -07:00
parent cc0954e022
commit 9894fc762e
1 changed files with 5 additions and 0 deletions

View File

@ -457,6 +457,11 @@ int Scl_LibertyBuildItem( Scl_Tree_t * p, char ** ppPos, char * pEnd )
goto exit;
return Scl_LibertyItemId( p, pItem );
}
if ( *pNext == ';' )
{
*ppPos = pNext + 1;
return Scl_LibertyBuildItem(p, ppPos, pEnd);
}
exit:
if ( p->pError == NULL )
{