Core/Crash reporting: Fix buffer overflow

This commit is contained in:
jackpoz
2017-12-02 00:02:16 +01:00
committed by Aokromes
parent 2507d601b7
commit 27be32968d

View File

@@ -1025,7 +1025,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;