提交 dc16aaf2 编写于 作者: D David S. Miller

[ROSE]: Fix missing unlocks in rose_route_frame()

Noticed by Coverity checker.
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 d5d28375
...@@ -994,8 +994,10 @@ int rose_route_frame(struct sk_buff *skb, ax25_cb *ax25) ...@@ -994,8 +994,10 @@ int rose_route_frame(struct sk_buff *skb, ax25_cb *ax25)
* 1. The frame isn't for us, * 1. The frame isn't for us,
* 2. It isn't "owned" by any existing route. * 2. It isn't "owned" by any existing route.
*/ */
if (frametype != ROSE_CALL_REQUEST) /* XXX */ if (frametype != ROSE_CALL_REQUEST) { /* XXX */
return 0; ret = 0;
goto out;
}
len = (((skb->data[3] >> 4) & 0x0F) + 1) / 2; len = (((skb->data[3] >> 4) & 0x0F) + 1) / 2;
len += (((skb->data[3] >> 0) & 0x0F) + 1) / 2; len += (((skb->data[3] >> 0) & 0x0F) + 1) / 2;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册