Skip to content
Snippets Groups Projects
Commit 42a50faa authored by Kaspar Schleiser's avatar Kaspar Schleiser Committed by GitHub
Browse files

Merge pull request #5814 from makomi/nordic_softdevice_ble

pkg/nordic_softdevice_ble: gnrc_nordic_ble_6lowpan: fix nullPointer error (cppcheck)
parents d94e5369 906b2269
No related branches found
No related tags found
No related merge requests found
...@@ -127,6 +127,11 @@ static void _handle_raw_sixlowpan(ble_mac_inbuf_t *inbuf) ...@@ -127,6 +127,11 @@ static void _handle_raw_sixlowpan(ble_mac_inbuf_t *inbuf)
static int _send(gnrc_pktsnip_t *pkt) static int _send(gnrc_pktsnip_t *pkt)
{ {
if (pkt == NULL) {
DEBUG("_send_ble: pkt was NULL\n");
return -EINVAL;
}
gnrc_netif_hdr_t *netif_hdr; gnrc_netif_hdr_t *netif_hdr;
gnrc_pktsnip_t *payload = pkt->next; gnrc_pktsnip_t *payload = pkt->next;
uint8_t *dst; uint8_t *dst;
...@@ -139,10 +144,6 @@ static int _send(gnrc_pktsnip_t *pkt) ...@@ -139,10 +144,6 @@ static int _send(gnrc_pktsnip_t *pkt)
uint8_t *buf = _sendbuf; uint8_t *buf = _sendbuf;
unsigned len = 0; unsigned len = 0;
if (pkt == NULL) {
DEBUG("_send_ble: pkt was NULL\n");
return -EINVAL;
}
if (pkt->type != GNRC_NETTYPE_NETIF) { if (pkt->type != GNRC_NETTYPE_NETIF) {
DEBUG("_send_ble: first header is not generic netif header\n"); DEBUG("_send_ble: first header is not generic netif header\n");
return -EBADMSG; return -EBADMSG;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment