Changeset a53ed3a in mainline for kernel/generic/src/ipc/sysipc.c
- Timestamp:
- 2018-01-13T03:15:30Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36df27eb, 50f19b7
- Parents:
- b7fd2a0
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-13 03:15:24)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-13 03:15:30)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/sysipc.c
rb7fd2a0 ra53ed3a 424 424 errno_t rc = copy_from_uspace(&call->data.args, &data->args, 425 425 sizeof(call->data.args)); 426 if (rc != 0) {426 if (rc != EOK) { 427 427 kobject_put(call->kobject); 428 428 kobject_put(kobj); … … 607 607 errno_t rc = copy_from_uspace(&newdata.args, &data->args, 608 608 sizeof(newdata.args)); 609 if (rc != 0)609 if (rc != EOK) 610 610 return (sys_errno_t) rc; 611 611 … … 697 697 errno_t rc = copy_from_uspace(&call->data.args, &data->args, 698 698 sizeof(call->data.args)); 699 if (rc != 0) {699 if (rc != EOK) { 700 700 /* 701 701 * Republish the capability so that the call does not get lost.
Note:
See TracChangeset
for help on using the changeset viewer.