Fabian Frederick <f...@skynet.be> writes: > Fix checkpatch warning: > WARNING: kfree(NULL) is safe this check is probably not required > > Cc: Larry Finger <larry.fin...@lwfinger.net> > Cc: Jes Sorensen <jes.soren...@redhat.com> > Cc: linux-wirel...@vger.kernel.org > Signed-off-by: Fabian Frederick <f...@skynet.be> > --- > drivers/staging/rtl8723au/core/rtw_ap.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/staging/rtl8723au/core/rtw_ap.c > b/drivers/staging/rtl8723au/core/rtw_ap.c > index c8700b3..8714ae3 100644 > --- a/drivers/staging/rtl8723au/core/rtw_ap.c > +++ b/drivers/staging/rtl8723au/core/rtw_ap.c > @@ -1270,8 +1270,7 @@ static void update_bcn_wps_ie(struct rtw_adapter > *padapter) > pnetwork->IELength = wps_offset + (wps_ielen+2) + > remainder_ielen; > } > > - if (pbackup_remainder_ie) > - kfree(pbackup_remainder_ie); > + kfree(pbackup_remainder_ie); > } > > static void update_bcn_p2p_ie(struct rtw_adapter *padapter)
This one is no longer an issue due to other changes in my tree. Cheers, Jes -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/