mirror of https://gitee.com/openkylin/linux.git
drivers/misc/ti-st/st_core.c: missing NULL check
Addresses https://bugzilla.kernel.org/show_bug.cgi?44431 Reported-by: <rucsoftsec@gmail.com> Signed-off-by: Alan Cox <alan@linux.intel.com> Cc: Pavan Savoy <pavan_savoy@ti.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
b57b44ae69
commit
5353cf089b
|
@ -349,6 +349,11 @@ void st_int_recv(void *disc_data,
|
||||||
st_gdata->rx_skb = alloc_skb(
|
st_gdata->rx_skb = alloc_skb(
|
||||||
st_gdata->list[type]->max_frame_size,
|
st_gdata->list[type]->max_frame_size,
|
||||||
GFP_ATOMIC);
|
GFP_ATOMIC);
|
||||||
|
if (st_gdata->rx_skb == NULL) {
|
||||||
|
pr_err("out of memory: dropping\n");
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
|
||||||
skb_reserve(st_gdata->rx_skb,
|
skb_reserve(st_gdata->rx_skb,
|
||||||
st_gdata->list[type]->reserve);
|
st_gdata->list[type]->reserve);
|
||||||
/* next 2 required for BT only */
|
/* next 2 required for BT only */
|
||||||
|
|
Loading…
Reference in New Issue