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.
1 parent b6f2c95 commit e16da32Copy full SHA for e16da32
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