summaryrefslogtreecommitdiffstats
path: root/src/operations.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/operations.c')
-rw-r--r--src/operations.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/operations.c b/src/operations.c
index cd7ef44..b3be2c7 100644
--- a/src/operations.c
+++ b/src/operations.c
@@ -91,8 +91,11 @@ clean:
void dev_free(struct device_info * dev) {
- if ( dev->usb )
+ if ( dev->usb ) {
+ if ( dev->usb->flash_device->protocol == FLASH_DISK )
+ disk_exit(dev->usb);
usb_close_device(dev->usb);
+ }
free(dev);
}