bdaddr_t *dst,
                                                   u8 link_type)
 {
-       struct l2cap_chan *c, *c1 = NULL;
+       struct l2cap_chan *c, *tmp, *c1 = NULL;
 
        read_lock(&chan_list_lock);
 
-       list_for_each_entry(c, &chan_list, global_l) {
+       list_for_each_entry_safe(c, tmp, &chan_list, global_l) {
                if (state && c->state != state)
                        continue;
 
                        dst_match = !bacmp(&c->dst, dst);
                        if (src_match && dst_match) {
                                c = l2cap_chan_hold_unless_zero(c);
-                               if (!c)
-                                       continue;
-
-                               read_unlock(&chan_list_lock);
-                               return c;
+                               if (c) {
+                                       read_unlock(&chan_list_lock);
+                                       return c;
+                               }
                        }
 
                        /* Closest match */