Skip to content

Commit aea1ce8

Browse files
committed
bug 711041 Undocumented "enum" values in TOC of qhp files causes tag-mismatch and corrupt TOC
The result of the `addHtmlExtensionIfMissing` was not caught and thus remained `result` unchanged so there was no extension.
1 parent 1f1ac28 commit aea1ce8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qhp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ static QCString makeFileName(const QCString & withoutExtension)
3838
}
3939
else // add specified HTML extension
4040
{
41-
addHtmlExtensionIfMissing(result);
41+
result = addHtmlExtensionIfMissing(result);
4242
}
4343
}
4444
return result;

0 commit comments

Comments
 (0)