提交 c92834c1 编写于 作者: W Wei Yongjun 提交者: Greg Kroah-Hartman

usb: gadget: f_ncm: fix missing unlock on error in ncm_alloc()

Add the missing unlock before return from function ncm_alloc()
in the error handling case.

Introduced by commit e7306603.
(usb: gadget: f_ncm: add configfs support)
Signed-off-by: NWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: NAndrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 2a98dbbc
...@@ -1403,6 +1403,7 @@ struct usb_function *ncm_alloc(struct usb_function_instance *fi) ...@@ -1403,6 +1403,7 @@ struct usb_function *ncm_alloc(struct usb_function_instance *fi)
sizeof(ncm->ethaddr)); sizeof(ncm->ethaddr));
if (status < 12) { /* strlen("01234567890a") */ if (status < 12) { /* strlen("01234567890a") */
kfree(ncm); kfree(ncm);
mutex_unlock(&opts->lock);
return ERR_PTR(-EINVAL); return ERR_PTR(-EINVAL);
} }
ncm_string_defs[STRING_MAC_IDX].s = ncm->ethaddr; ncm_string_defs[STRING_MAC_IDX].s = ncm->ethaddr;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册