mirror of
https://github.com/godotengine/godot.git
synced 2025-02-16 15:50:45 +00:00
Workaround GCC warning in rasterizer_canvas_batcher
`-Werror=array-bounds` flags when creating a new batch, possibly due to the possibility of the malloc failing (out of memory). This PR adds an explicit `CRASHNOW` in the hope the compiler will recognise this case is not intended to be recoverable.
This commit is contained in:
parent
6b28d93bbc
commit
64ab7488db
@ -682,7 +682,7 @@ public:
|
||||
|
||||
// this should always succeed after growing
|
||||
batch = bdata.batches.request();
|
||||
RAST_DEBUG_ASSERT(batch);
|
||||
CRASH_COND_MSG(!batch, "Out of memory");
|
||||
}
|
||||
|
||||
if (p_blank) {
|
||||
|
Loading…
Reference in New Issue
Block a user