Changeset 762f989 in mainline
- Timestamp:
- 2020-07-05T23:09:49Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 583c2a3
- Parents:
- d74a2b8
- git-author:
- Manuele Conti <manuele.conti@…> (2020-07-05 13:28:14)
- git-committer:
- jxsvoboda <5887334+jxsvoboda@…> (2020-07-05 23:09:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/src/display.c
rd74a2b8 r762f989 176 176 if (rc != EOK) { 177 177 async_forget(req); 178 free(window); 178 179 return rc; 179 180 } 180 181 181 182 async_wait_for(req, &rc); 182 if (rc != EOK) 183 return rc; 183 if (rc != EOK) { 184 free(window); 185 return rc; 186 } 184 187 185 188 window->display = display;
Note:
See TracChangeset
for help on using the changeset viewer.