--- src/dirdef.cpp.orig 2021-08-17 17:10:43 UTC +++ src/dirdef.cpp @@ -11,11 +11,13 @@ * Documents produced by Doxygen are derivative works derived from the * input used in their production; they are not affected by this license. * +#include */ #include #include "dirdef.h" +#include #include "md5.h" #include "filename.h" #include "doxygen.h" @@ -178,10 +180,8 @@ void DirDefImpl::sort() static QCString encodeDirName(const QCString &anchor) { // convert to md5 hash - uchar md5_sig[16]; - char sigStr[33]; - MD5Buffer((const unsigned char *)anchor.data(),anchor.length(),md5_sig); - MD5SigToString(md5_sig,sigStr); + QCString sigStr(33); + MD5Data((const unsigned char *)anchor.data(),anchor.length(),sigStr.rawData()); return sigStr; // old algorithm