2

我的库在 Visual Studio 2010 中运行良好,但现在每当我在 2012 年编译运行它时,都会出现以下内存错误:

First-chance exception at 0x76884B32 in Example.exe: Microsoft C++ exception: std::bad_alloc at memory location 0x0101F3A0.
First-chance exception at 0x76884B32 in Example.exe: Microsoft C++ exception: std::bad_alloc at memory location 0x0101F3A0.
Unhandled exception at at 0x76884B32 in Example.exe: Microsoft C++ exception: std::bad_alloc at memory location 0x0101F3A0.
First-chance exception at 0x76FF3541 (ntdll.dll) in Example.exe: 0xC0000005: Access violation reading location 0xFEFEFF02.

根据调用堆栈,每次return wstring(cMD5.hexdigest());从以下代码调用错误都会出现:

wstring GetMachineHash() {
     BYTE szHash[48];
     LPBYTE pIdentifierHash;

     ZeroMemory(szHash, 48);

     MachineNameIdentifier cNameId;
     pIdentifierHash = cNameId.GetIdentifierHash();

     memcpy(szHash, pIdentifierHash, 16);

     NetworkAdapterIdentifier cNetAdaptId;
     pIdentifierHash = cNetAdaptId.GetIdentifierHash();

     memcpy(szHash+16, pIdentifierHash, 16);

     VolumeInfoIdentifier cVolInfo;
     pIdentifierHash = cVolInfo.GetIdentifierHash();

     memcpy(szHash+32, pIdentifierHash, 16);

     MD5 cMD5(szHash, 48);

     return wstring(cMD5.hexdigest());
}

如果您想知道我正在使用什么 MD5 类,它是 Frank Thilo 的一个端口,但它被修改为返回 LPBYTE 而不是 std::string ,如下所示:

// return 16 byte md5 hash
LPBYTE MD5::hash() const {
    if (!finalized)
        return 0;

    return (LPBYTE)digest;
}

// return hex representation of digest as string
LPTSTR MD5::hexdigest() const
{
    if (!finalized)
        return NULL;

    LPTSTR szBuf = new TCHAR[33];

    ZeroMemory(szBuf, 33);

    for (int i=0; i<16; i++)
        _stprintf_s(szBuf+i*2, 33, _T("%02X"), digest[i]);

    szBuf[32]=0;

    return szBuf;
}

在对 SO 进行了一些研究之后,它说这些错误是因为我的程序中其他地方可能存在内存泄漏。但我看过,一切似乎都被正确释放了。有任何想法吗?我想知道这是否也可能与通过LoadLibrary()和从 EXE 调用 DLL 库有关GetProcAddress()

(我还应该注意平台工具集设置为Visual Studio 2012 - Windows XP (v110_xp)

4

0 回答 0