Skip to content

Commit 668b4d9

Browse files
committed
Coverity uninitialized variable
Coverity reported new uninitialized variable
1 parent 45431b4 commit 668b4d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/markdown.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2731,7 +2731,7 @@ void MarkdownOutlineParser::parseInput(const char *fileName,
27312731
Protection prot=Public;
27322732
bool needsEntry = FALSE;
27332733
int position=0;
2734-
int startNewlines;
2734+
int startNewlines=0;
27352735
QCString processedDocs = markdown.process(docs,startNewlines);
27362736
lineNr += startNewlines;
27372737
while (p->commentScanner.parseCommentBlock(

0 commit comments

Comments
 (0)