diff options
| author | Himanshu Jha <himanshujha199640@gmail.com> | 2017-09-11 18:16:04 +0530 |
|---|---|---|
| committer | Kalle Valo <kvalo@codeaurora.org> | 2017-09-20 15:46:59 +0300 |
| commit | 85dafc12919659ec744e111b1714792cd3d0a9ca (patch) | |
| tree | 5fb5eb02c992b646391fbb4e0b112c97cb92de0c /tools/perf/scripts/python/export-to-postgresql.py | |
| parent | mwifiex: check for mfg_mode in add_virtual_intf (diff) | |
| download | linux-85dafc12919659ec744e111b1714792cd3d0a9ca.tar.gz linux-85dafc12919659ec744e111b1714792cd3d0a9ca.zip | |
mwifiex: remove unnecessary call to memset
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, e2);
Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'tools/perf/scripts/python/export-to-postgresql.py')
0 files changed, 0 insertions, 0 deletions
