Changeset 1924bd43 in mainline for uspace/drv/bus/usb/vhc/connhost.c
- Timestamp:
- 2011-09-25T12:07:26Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5dd4f77a
- Parents:
- 6fe0bf8d (diff), 113093a (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/vhc/connhost.c
r6fe0bf8d r1924bd43 440 440 int rc = vhc_virtdev_add_transfer(vhc, transfer); 441 441 if (rc != EOK) { 442 free(transfer->setup_buffer); 442 if (transfer->setup_buffer != NULL) { 443 free(transfer->setup_buffer); 444 } 443 445 free(transfer); 444 446 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.