Changeset 1114173 in mainline
- Timestamp:
- 2011-10-06T09:49:39Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e68c834
- Parents:
- 9b9d37bb (diff), d6c953e9 (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/usbmast/main.c
r9b9d37bb r1114173 97 97 if (mdev == NULL) { 98 98 usb_log_error("Failed allocating softstate.\n"); 99 rc = ENOMEM; 100 goto error; 99 return ENOMEM; 101 100 } 102 101 … … 125 124 error: 126 125 /* XXX Destroy functions */ 127 if (mdev != NULL)128 free(mdev);129 126 return rc; 130 127 }
Note:
See TracChangeset
for help on using the changeset viewer.