mirror of
https://github.com/apache/nuttx.git
synced 2026-05-20 20:44:39 +08:00
drivers/loop: destroy nxmutex properly
This commit is contained in:
@@ -408,6 +408,7 @@ errout_with_file:
|
||||
file_close(&dev->devfile);
|
||||
|
||||
errout_with_dev:
|
||||
nxmutex_destroy(&dev->lock);
|
||||
kmm_free(dev);
|
||||
return ret;
|
||||
}
|
||||
@@ -471,6 +472,7 @@ int loteardown(FAR const char *devname)
|
||||
file_close(&dev->devfile);
|
||||
}
|
||||
|
||||
nxmutex_destroy(&dev->lock);
|
||||
kmm_free(dev);
|
||||
return ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user