We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a40a4d commit 125b939Copy full SHA for 125b939
src/util.cpp
@@ -6592,7 +6592,7 @@ QCString addHtmlExtensionIfMissing(const char *fName)
6592
{
6593
if (fName==0) return fName;
6594
const char *p = strchr(fName,'.');
6595
- if (p)
+ if (p==nullptr) // no extension
6596
6597
return QCString(fName)+Doxygen::htmlFileExtension;
6598
}
src/util.h
@@ -30,6 +30,7 @@
30
#include "sortdict.h"
31
#include "docparser.h"
32
#include "classdef.h"
33
+#include "arguments.h"
34
35
//--------------------------------------------------------------------
36
0 commit comments