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:
lawnjelly 2023-12-11 17:45:30 +00:00
parent 6b28d93bbc
commit 64ab7488db

View file

@ -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) {