We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6f2c95 + e16da32 commit 2d4060bCopy full SHA for 2d4060b
Source/core/Frame.h
@@ -85,6 +85,7 @@ namespace Core {
85
inline void RealAllocate(const uint32_t requiredSize, const TemplateIntToType<NONZEROSIZE>& /* For compile time diffrentiation */)
86
{
87
if (requiredSize > _bufferSize) {
88
+ ASSERT(_data != nullptr);
89
90
_bufferSize = static_cast<uint16_t>(((requiredSize / (STARTSIZE ? STARTSIZE : 1)) + 1) * STARTSIZE);
91
0 commit comments