Changeset da412547 in mainline for uspace/srv/hid/display/client.c


Ignore:
Timestamp:
2019-11-10T17:07:44Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b093a62
Parents:
6427f083
Message:

Display server should deal with client not destroying windows properly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/client.c

    r6427f083 rda412547  
    7575void ds_client_destroy(ds_client_t *client)
    7676{
     77        ds_window_t *window;
     78
     79        window = ds_client_first_window(client);
     80        while (window != NULL) {
     81                ds_window_destroy(window);
     82                window = ds_client_first_window(client);
     83        }
     84
    7785        assert(list_empty(&client->windows));
    7886        ds_display_remove_client(client);
Note: See TracChangeset for help on using the changeset viewer.