Changeset ccbd2e1 in mainline
- Timestamp:
- 2020-05-06T10:16:58Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0800b26
- Parents:
- 622e7c9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async/client.c
r622e7c9 rccbd2e1 1052 1052 static void async_hangup_internal(cap_phone_handle_t phone) 1053 1053 { 1054 (void) ipc_hangup(phone); 1054 errno_t rc; 1055 1056 rc = ipc_hangup(phone); 1057 assert(rc == EOK); 1058 (void) rc; 1055 1059 } 1056 1060 … … 1077 1081 list_remove(&exch->sess_link); 1078 1082 list_remove(&exch->global_link); 1079 async_hangup_internal(exch->phone); 1083 if (sess->mgmt != EXCHANGE_ATOMIC && 1084 sess->mgmt != EXCHANGE_SERIALIZE) 1085 async_hangup_internal(exch->phone); 1080 1086 free(exch); 1081 1087 }
Note:
See TracChangeset
for help on using the changeset viewer.