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 committed by Relintai
parent bc5b8b61ec
commit 88fd023a06

View File

@ -683,7 +683,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) {