mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 08:09:56 +00:00
vulkan/fullscreenrender: free the attachment descriptions
Fixes a memory leak of the attachment descriptions we receive from the subclass.
This commit is contained in:
parent
fc9f047885
commit
833c596bc5
1 changed files with 1 additions and 0 deletions
|
@ -503,6 +503,7 @@ _create_render_pass (GstVulkanFullScreenRender * render)
|
|||
vkCreateRenderPass (render->device->device, &render_pass_info, NULL,
|
||||
&render_pass);
|
||||
g_free (color_attachment_refs);
|
||||
g_free (descriptions);
|
||||
if (gst_vulkan_error_to_g_error (err, &error, "vkCreateRenderPass") < 0) {
|
||||
GST_ERROR_OBJECT (render, "Failed to create renderpass: %s",
|
||||
error->message);
|
||||
|
|
Loading…
Reference in a new issue