Skip to content

Commit

Permalink
bug 711041 Undocumented "enum" values in TOC of qhp files causes tag-…
Browse files Browse the repository at this point in the history
…mismatch and corrupt TOC

The result of the `addHtmlExtensionIfMissing` was not caught and thus remained `result` unchanged so there was no extension.
  • Loading branch information
albert-github committed Jan 12, 2022
1 parent 1f1ac28 commit aea1ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qhp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ static QCString makeFileName(const QCString & withoutExtension)
}
else // add specified HTML extension
{
addHtmlExtensionIfMissing(result);
result = addHtmlExtensionIfMissing(result);
}
}
return result;
Expand Down

0 comments on commit aea1ce8

Please sign in to comment.