ppu_resize: don't leak if one layer failed to resize

This commit is contained in:
Sigrid Solveig Haflínudóttir 2021-12-25 15:05:33 +01:00
parent ef2b2e881b
commit f49143782a
1 changed files with 4 additions and 1 deletions

View File

@ -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;