Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion subsys/net/l2/ieee802154/ieee802154.c
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ static bool ieeee802154_check_dst_addr(struct net_if *iface, struct ieee802154_m
if (!(dst_plain->pan_id == IEEE802154_BROADCAST_PAN_ID ||
dst_plain->pan_id == sys_cpu_to_le16(ctx->pan_id))) {
LOG_DBG("Frame PAN ID does not match!");
return false;
goto out;
}

if (mhr->fs->fc.dst_addr_mode == IEEE802154_ADDR_MODE_SHORT) {
Expand Down
1 change: 1 addition & 0 deletions subsys/net/l2/ieee802154/ieee802154_mgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,7 @@ static int ieee802154_associate(uint32_t mgmt_request, struct net_if *iface,
if (ieee802154_radio_send(iface, pkt, pkt->buffer)) {
net_pkt_unref(pkt);
ret = -EIO;
k_sem_give(&ctx->scan_ctx_lock);
NET_ERR("Could not associate: cannot send association request");
goto out;
}
Expand Down
Loading