Merge pull request #3830 from orestisfl/i3bar-leak

Fix i3bar leak on handle_destroy_notify
next
Ingo Bürk 2019-10-15 12:50:28 +02:00 committed by GitHub
commit ebb8d89021
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -999,6 +999,8 @@ static void handle_destroy_notify(xcb_destroy_notify_event_t *event) {
DLOG("Removing tray client with window ID %08x\n", event->window);
TAILQ_REMOVE(output->trayclients, client, tailq);
free(client->class_class);
free(client->class_instance);
FREE(client);
/* Trigger an update, we now have more space for the statusline */