Re: [PATCH] net: fjes: fix potential NULL pointer dereferences

From: David Miller
Date: Mon Mar 11 2019 - 19:19:12 EST


From: Kangjie Lu <kjlu@xxxxxxx>
Date: Mon, 11 Mar 2019 02:10:21 -0500

> adapter->control_wq = alloc_workqueue(DRV_NAME "/control",
> WQ_MEM_RECLAIM, 0);
> + if (!adapter->control_wq) {
> + err = -ENOMEM;
> + goto err_free_netdev;
> + }

This error path leaks adapter->txrx_wq.