mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-05 21:15:59 +01:00
drm-lease-v1: Free the wlr_drm_lease_v1 on error
This commit is contained in:
parent
8dec0f6174
commit
0cb091f1a2
1 changed files with 2 additions and 0 deletions
|
@ -177,6 +177,7 @@ struct wlr_drm_lease_v1 *wlr_drm_lease_request_v1_grant(
|
|||
if (!lease->drm_lease) {
|
||||
wlr_log(WLR_ERROR, "wlr_drm_create_lease failed");
|
||||
wp_drm_lease_v1_send_finished(lease->resource);
|
||||
free(lease);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -185,6 +186,7 @@ struct wlr_drm_lease_v1 *wlr_drm_lease_request_v1_grant(
|
|||
wlr_log(WLR_ERROR, "Failed to allocate lease connectors list");
|
||||
close(fd);
|
||||
wp_drm_lease_v1_send_finished(lease->resource);
|
||||
free(lease);
|
||||
return NULL;
|
||||
}
|
||||
lease->n_connectors = request->n_connectors;
|
||||
|
|
Loading…
Reference in a new issue