Changeset aefdccd in mainline for uspace/lib/device/src/bd_srv.c
- Timestamp:
- 2025-10-20T06:14:54Z (7 weeks ago)
- Parents:
- adbd7e1 (diff), 3e41cc4 (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. - git-author:
- boba-buba <120932204+boba-buba@…> (2025-10-20 06:14:54)
- git-committer:
- GitHub <noreply@…> (2025-10-20 06:14:54)
- File:
-
- 1 edited
-
uspace/lib/device/src/bd_srv.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/device/src/bd_srv.c
radbd7e1 raefdccd 77 77 rc = srv->srvs->ops->read_blocks(srv, ba, cnt, buf, size); 78 78 if (rc != EOK) { 79 async_answer_0(&rcall, ENOMEM);80 async_answer_0(call, ENOMEM);79 async_answer_0(&rcall, rc); 80 async_answer_0(call, rc); 81 81 free(buf); 82 82 return; … … 121 121 rc = srv->srvs->ops->read_toc(srv, session, buf, size); 122 122 if (rc != EOK) { 123 async_answer_0(&rcall, ENOMEM);124 async_answer_0(call, ENOMEM);123 async_answer_0(&rcall, rc); 124 async_answer_0(call, rc); 125 125 free(buf); 126 126 return;
Note:
See TracChangeset
for help on using the changeset viewer.
