Free screenshot state

This commit is contained in:
emersion 2017-10-07 13:09:55 +02:00
parent ecd5263d4d
commit 4374c52135
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 5 additions and 3 deletions

View File

@ -43,7 +43,7 @@ static void output_frame_notify(struct wl_listener *listener, void *_data) {
orbital_screenshot_send_done(state->screenshot->resource);
// TODO: free(state)
free(state);
}
static void screenshooter_shoot(struct wl_client *client,
@ -69,8 +69,10 @@ static void screenshooter_shoot(struct wl_client *client,
return;
}
struct wlr_screenshot *screenshot;
if (!(screenshot = calloc(1, sizeof(struct wlr_screenshot)))) {
struct wlr_screenshot *screenshot =
calloc(1, sizeof(struct wlr_screenshot));
if (!screenshot) {
wl_client_post_no_memory(client);
return;
}
screenshot->output = _output;