Changeset 277168d in mainline
- Timestamp:
- 2020-07-05T13:28:14Z (4 years ago)
- Parents:
- d74a2b8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/src/display.c
rd74a2b8 r277168d 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.