summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-05-12 12:24:24 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-05-12 12:24:24 (GMT)
commitbcc8da62ab46c3dbbf08c2c16e6b4dfb6b64b2cb (patch)
treeccb642a70a43af0bf5cf5fe12939bea4a624c38f
parent723b842ca1de2f8565717d7099f8ff61b63f6026 (diff)
parent59603e99374ec1272b9758cc947881b68bae2023 (diff)
downloadDoxygen-bcc8da62ab46c3dbbf08c2c16e6b4dfb6b64b2cb.zip
Doxygen-bcc8da62ab46c3dbbf08c2c16e6b4dfb6b64b2cb.tar.gz
Doxygen-bcc8da62ab46c3dbbf08c2c16e6b4dfb6b64b2cb.tar.bz2
Merge branch 'master' of github.com:doxygen/doxygen
-rw-r--r--src/htags.cpp2
-rw-r--r--src/memberdef.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/htags.cpp b/src/htags.cpp
index 77b1f8d..7f5870d 100644
--- a/src/htags.cpp
+++ b/src/htags.cpp
@@ -128,7 +128,7 @@ bool Htags::loadFilemap(const QCString &htmlDir)
int len;
while ((len=f.readLine(line.rawData(),maxlen))>0)
{
- line.resize(len+1);
+ line.at(len)='\0';
//printf("Read line: %s",line.data());
int sep = line.find('\t');
if (sep!=-1)
diff --git a/src/memberdef.cpp b/src/memberdef.cpp
index cd3cc46..3442229 100644
--- a/src/memberdef.cpp
+++ b/src/memberdef.cpp
@@ -5929,6 +5929,7 @@ void MemberDefImpl::copyArgumentNames(MemberDef *bmd)
for (;(argDst=aliDst.current()) && (argSrc=aliSrc.current());++aliDst,++aliSrc)
{
argDst->name = argSrc->name;
+ argDst->docs = argSrc->docs;
}
}
}
@@ -5943,6 +5944,7 @@ void MemberDefImpl::copyArgumentNames(MemberDef *bmd)
for (;(argDst=aliDst.current()) && (argSrc=aliSrc.current());++aliDst,++aliSrc)
{
argDst->name = argSrc->name;
+ argDst->docs = argSrc->docs;
}
}
}