Changeset 7e38970d in mainline for uspace/lib/display/src/display.c
- Timestamp:
- 2020-12-07T00:08:37Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 25f26600
- Parents:
- 7a873f0 (diff), 8596474 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/src/display.c
r7a873f0 r7e38970d 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.