Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/display/src/display.c

    r762f989 r4ac11ff  
    3838#include <mem.h>
    3939#include <stdlib.h>
     40#include "../private/display.h"
    4041#include "../private/params.h"
    4142
     
    198199/** Destroy display window.
    199200 *
    200  * @param window Window
     201 * @param window Window or @c NULL
    201202 * @return EOK on success or an error code. In both cases @a window must
    202203 *         not be accessed anymore
     
    206207        async_exch_t *exch;
    207208        errno_t rc;
     209
     210        if (window == NULL)
     211                return EOK;
    208212
    209213        exch = async_exchange_begin(window->display->sess);
Note: See TracChangeset for help on using the changeset viewer.