Re: mwifiex: remove unnecessary call to memset

2017-09-20 Thread Kalle Valo
t; expression e,e2; constant c; > statement S; > @@ > > e = kzalloc(e2, c); > if(e == NULL) S > - memset(e, 0, e2); > > Signed-off-by: Himanshu Jha <himanshujha199...@gmail.com> Patch applied to wireless-drivers-next.git, thanks. 85dafc129196 mwifiex: remove unnece

RE: [PATCH] mwifiex: remove unnecessary call to memset

2017-09-11 Thread Xinming Hu
vell.com>; > kv...@codeaurora.org; linux-wireless@vger.kernel.org; > net...@vger.kernel.org; Himanshu Jha <himanshujha199...@gmail.com> > Subject: [EXT] [PATCH] mwifiex: remove unnecessary call to memset > > External Email > > --

[PATCH] mwifiex: remove unnecessary call to memset

2017-09-11 Thread Himanshu Jha
call to memset to assign 0 value immediately after allocating memory with kzalloc is unnecesaary as kzalloc allocates the memory filled with 0 value. Semantic patch used to resolve this issue: @@ expression e,e2; constant c; statement S; @@ e = kzalloc(e2, c); if(e == NULL) S - memset(e, 0,