Hi Galo, On Fri, 21 Apr 2017 10:06:25 +0200 Galo <anglor@xxxxxxxxx> wrote: > > @@ -1461,7 +1460,7 @@ static int rtw_check_join_candidate(struct mlme_priv *pmlmepriv > goto exit; > } > > - if (*candidate == NULL || (*candidate)->network.Rssi < competitor->network.Rssi) { > + if (!candidate || (*candidate)->network.Rssi < competitor->network.Rssi) { These are not equivalent. It should be "!*candidate" -- Cheers, Stephen Rothwell -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html