Changeset 5319a3c in mainline for uspace/lib/device/src/bd_srv.c
- Timestamp:
- 2025-07-04T00:40:22Z (3 weeks ago)
- Parents:
- 5caad1d (diff), d3dd170f (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:
- Miroslav Cimerman <70661600+mcimerman@…> (2025-07-04 00:40:22)
- git-committer:
- GitHub <noreply@…> (2025-07-04 00:40:22)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/device/src/bd_srv.c
r5caad1d r5319a3c 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.