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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue