render/pixman/renderer.c: Fix memory-leak in create_buffer
Found via scan-build
This commit is contained in:
parent
ebe3cfaceb
commit
4fb652c27f
|
@ -108,7 +108,7 @@ static struct wlr_pixman_buffer *create_buffer(
|
||||||
if (format == 0) {
|
if (format == 0) {
|
||||||
wlr_log(WLR_ERROR, "Unsupported pixman drm format 0x%"PRIX32,
|
wlr_log(WLR_ERROR, "Unsupported pixman drm format 0x%"PRIX32,
|
||||||
drm_format);
|
drm_format);
|
||||||
return NULL;
|
goto error_buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
buffer->image = pixman_image_create_bits(format, wlr_buffer->width,
|
buffer->image = pixman_image_create_bits(format, wlr_buffer->width,
|
||||||
|
|
Loading…
Reference in New Issue