attempted to fix wrong IO semaphore handling over a semaphore group

This commit is contained in:
hyunghwan.chung
2017-10-31 07:13:22 +00:00
parent 9ae1b99b43
commit 5ae166c1d4
7 changed files with 141 additions and 31 deletions

View File

@ -945,7 +945,7 @@ static int skip_comment (moo_t* moo)
GET_CHAR_TO (moo, c);
if (c == MOO_UCI_EOF) goto unterminated;
if (c == '*') goto check_rparen;
if (c == '*') goto check_rparen; /* got another * after * */
if (c == ')')
{
GET_CHAR (moo); /* keep the first meaningful character in lxc */