Re: [PATCH v3] staging: rtl8192u: null check the kzalloc

2019-07-31 Thread Greg KH
On Tue, Jul 30, 2019 at 05:01:39PM -0500, Navid Emamdoost wrote: > In rtl8192_init_priv_variable allocation for priv->pFirmware may fail, > so a null check is necessary.priv->pFirmware is accessed later in > rtl8192_adapter_start. I added the check and made appropriate changes > to propagate the

[PATCH v3] staging: rtl8192u: null check the kzalloc

2019-07-30 Thread Navid Emamdoost
In rtl8192_init_priv_variable allocation for priv->pFirmware may fail, so a null check is necessary.priv->pFirmware is accessed later in rtl8192_adapter_start. I added the check and made appropriate changes to propagate the errno to the caller. --- Update v2: fixed style errors Update V3: fixed