Core/Crash reporting: Fix buffer overflow

This commit is contained in:
jackpoz
2017-12-02 00:02:16 +01:00
parent 072c884ed8
commit c7043b25f6

View File

@@ -1028,7 +1028,7 @@ bool logChildren)
ULONG64 length;
SymGetTypeInfo(m_hProcess, modBase, innerTypeID, TI_GET_LENGTH, &length);
char buffer2[50];
FormatOutputValue(buffer2, basicType, length, (PVOID)address, sizeof(buffer));
FormatOutputValue(buffer2, basicType, length, (PVOID)address, sizeof(buffer2));
symbolDetails.top().Value = buffer2;
}
bHandled = true;