Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53985dcc authored by Per Forlin's avatar Per Forlin Committed by Kalle Valo
Browse files

brcmf: Fix null pointer exception in bcdc_hdrpull



In fwsignal.c: brcmf_fws_commit_skb()
...
if (rc < 0) {
  entry->transit_count--;
    if (entry->suppressed)
      entry->suppr_transit_count--;
      (void)brcmf_proto_hdrpull(fws->drvr, false, skb, NULL);
                                                     ^^^^^^^
    goto rollback;
}
...

The call to hdrpull will trigger a null pointer exception
unless a null check is made in the method implementation.

Signed-off-by: default avatarPer Forlin <per.forlin@gmail.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 7705ba6f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -321,6 +321,7 @@ brcmf_proto_bcdc_hdrpull(struct brcmf_pub *drvr, bool do_fws,
	if (pktbuf->len == 0)
		return -ENODATA;

	if (ifp != NULL)
		*ifp = tmp_if;
	return 0;
}