Re: [PATCH] wil6210: Delete an unnecessary kfree() call in wil_tid_ampdu_rx_alloc()

2019-09-03 Thread Kalle Valo
Markus Elfring wrote: > A null pointer would be passed to a call of the function “kfree” > directly after a call of the function “kcalloc” failed at one place. > Remove this superfluous function call. > > This issue was detected by using the Coccinelle software. > > Signed-off-by: Markus Elfrin

Re: [PATCH] wil6210: Delete an unnecessary kfree() call in wil_tid_ampdu_rx_alloc()

2019-08-29 Thread merez
On 2019-08-27 17:44, Markus Elfring wrote: From: Markus Elfring Date: Tue, 27 Aug 2019 16:39:02 +0200 A null pointer would be passed to a call of the function “kfree” directly after a call of the function “kcalloc” failed at one place. Remove this superfluous function call. This issue was dete

[PATCH] wil6210: Delete an unnecessary kfree() call in wil_tid_ampdu_rx_alloc()

2019-08-27 Thread Markus Elfring
From: Markus Elfring Date: Tue, 27 Aug 2019 16:39:02 +0200 A null pointer would be passed to a call of the function “kfree” directly after a call of the function “kcalloc” failed at one place. Remove this superfluous function call. This issue was detected by using the Coccinelle software. Signe