add allocation failure case in R_DrawMasked
This commit is contained in:
parent
71f14c1a0e
commit
a06aa1590f
1 changed files with 3 additions and 0 deletions
|
|
@ -3857,6 +3857,9 @@ void R_DrawMasked(maskcount_t* masks, INT32 nummasks)
|
|||
|
||||
heads = static_cast<drawnode_t*>(calloc(nummasks, sizeof(drawnode_t)));
|
||||
|
||||
if (!heads)
|
||||
I_Error("R_DrawMasked: No more free memory\n");
|
||||
|
||||
for (i = 0; i < nummasks; i++)
|
||||
{
|
||||
heads[i].next = heads[i].prev = &heads[i];
|
||||
|
|
|
|||
Loading…
Reference in a new issue