Fix memory leak

This commit is contained in:
Antonin Décimo 2019-08-09 15:31:33 +02:00 committed by Drew DeVault
parent 820800a5ab
commit 3fc977d7da
1 changed files with 1 additions and 0 deletions

View File

@ -300,6 +300,7 @@ static struct wl_resource *create_offer(struct wlr_data_control_device_v1 *devic
struct wl_resource *resource = wl_resource_create(client,
&zwlr_data_control_offer_v1_interface, version, 0);
if (resource == NULL) {
free(offer);
return NULL;
}