Changes in uspace/lib/usbvirt/src/ipc_hc.c [e882e3a:50b581d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbvirt/src/ipc_hc.c
re882e3a r50b581d 80 80 if (rc != EOK) { 81 81 async_exchange_end(exch); 82 async_ wait_for(opening_request, NULL);82 async_forget(opening_request); 83 83 return rc; 84 84 } … … 91 91 92 92 if (data_request == 0) { 93 async_ wait_for(opening_request, NULL);93 async_forget(opening_request); 94 94 return ENOMEM; 95 95 } … … 153 153 if (rc != EOK) { 154 154 async_exchange_end(exch); 155 async_ wait_for(opening_request, NULL);155 async_forget(opening_request); 156 156 return rc; 157 157 } … … 161 161 if (rc != EOK) { 162 162 async_exchange_end(exch); 163 async_ wait_for(opening_request, NULL);163 async_forget(opening_request); 164 164 return rc; 165 165 } … … 226 226 227 227 if (data_request == 0) { 228 async_ wait_for(opening_request, NULL);228 async_forget(opening_request); 229 229 return ENOMEM; 230 230 } … … 301 301 302 302 if (rc != EOK) { 303 async_ wait_for(opening_request, NULL);303 async_forget(opening_request); 304 304 return rc; 305 305 }
Note:
See TracChangeset
for help on using the changeset viewer.