mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-15 18:55:06 +00:00
ppu_resize: don't leak if one layer failed to resize
This commit is contained in:
parent
ef2b2e881b
commit
f49143782a
1 changed files with 4 additions and 1 deletions
|
@ -59,8 +59,11 @@ ppu_resize(Ppu *p, Uint16 width, Uint16 height)
|
|||
Uint8
|
||||
*bg = realloc(p->bg.pixels, width * height),
|
||||
*fg = realloc(p->fg.pixels, width * height);
|
||||
if(!bg || !fg)
|
||||
if(!bg || !fg) {
|
||||
free(bg);
|
||||
free(fg);
|
||||
return;
|
||||
}
|
||||
p->bg.pixels = bg;
|
||||
p->fg.pixels = fg;
|
||||
p->width = width;
|
||||
|
|
Loading…
Reference in a new issue