mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 05:55:58 +01:00
render/pixman/renderer.c: Fix memory-leak in create_buffer
Found via scan-build
This commit is contained in:
parent
ebe3cfaceb
commit
4fb652c27f
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue