Commit e2597756 authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Bug 705586 - @code tag as the last line of a comment block causes the parser to hang

parent 69af1c8a
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -1831,10 +1831,11 @@ static void findEndOfLine(GrowBuf &out,const char *data,int size,
       )
    {
      QCString endBlockName = isBlockCommand(data+end-1,end-1,size-(end-1));
      end++;
      if (!endBlockName.isEmpty())
      {
        int l = endBlockName.length();
        for (;end<size-l;end++) // search for end of block marker
        for (;end<size-l-1;end++) // search for end of block marker
        {
          if ((data[end]=='\\' || data[end]=='@') &&
              data[end-1]!='\\' && data[end-1]!='@'
@@ -1858,10 +1859,6 @@ static void findEndOfLine(GrowBuf &out,const char *data,int size,
          }
        }
      }
      else
      {
        end++;
      }
    }
    else if (nb==0 && data[end-1]=='<' && end<size-6 &&
             (end<=1 || (data[end-2]!='\\' && data[end-2]!='@'))