render/pixman/renderer.c: Fix memory-leak in create_buffer

Found via scan-build
This commit is contained in:
Haelwenn (lanodan) Monnier 2021-10-26 18:47:19 +02:00 committed by Simon Zeni
parent ebe3cfaceb
commit 4fb652c27f
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ static struct wlr_pixman_buffer *create_buffer(
if (format == 0) {
wlr_log(WLR_ERROR, "Unsupported pixman drm format 0x%"PRIX32,
drm_format);
return NULL;
goto error_buffer;
}
buffer->image = pixman_image_create_bits(format, wlr_buffer->width,