Changes in uspace/lib/display/src/display.c [762f989:4ac11ff] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/src/display.c
r762f989 r4ac11ff 38 38 #include <mem.h> 39 39 #include <stdlib.h> 40 #include "../private/display.h" 40 41 #include "../private/params.h" 41 42 … … 198 199 /** Destroy display window. 199 200 * 200 * @param window Window 201 * @param window Window or @c NULL 201 202 * @return EOK on success or an error code. In both cases @a window must 202 203 * not be accessed anymore … … 206 207 async_exch_t *exch; 207 208 errno_t rc; 209 210 if (window == NULL) 211 return EOK; 208 212 209 213 exch = async_exchange_begin(window->display->sess);
Note:
See TracChangeset
for help on using the changeset viewer.