drivers/loop: destroy nxmutex properly

This commit is contained in:
chao an 2022-11-20 21:45:32 +08:00 committed by Xiang Xiao
parent d256b8334e
commit 40581558d3
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}