Commit 14f88af1 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 734704 Sigsegv while generating XML output

parent 3b8fea2f
...@@ -42,7 +42,7 @@ void FileParser::parseCode(CodeOutputInterface &codeOutIntf, ...@@ -42,7 +42,7 @@ void FileParser::parseCode(CodeOutputInterface &codeOutIntf,
QCString lineStr = input.mid(i,j-i); QCString lineStr = input.mid(i,j-i);
codeOutIntf.startCodeLine(showLineNumbers); codeOutIntf.startCodeLine(showLineNumbers);
if (showLineNumbers) codeOutIntf.writeLineNumber(0,0,0,lineNr); if (showLineNumbers) codeOutIntf.writeLineNumber(0,0,0,lineNr);
codeOutIntf.codify(lineStr); if (!lineStr.isEmpty()) codeOutIntf.codify(lineStr);
codeOutIntf.endCodeLine(); codeOutIntf.endCodeLine();
lineNr++; lineNr++;
i=j+1; i=j+1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment