commit | 2d828f02f30435a8fdf24246670a135a715a4232 | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | Wed Nov 08 22:13:54 2017 +0100 |
committer | Tom Rini <trini@konsulko.com> | Mon Nov 20 20:18:36 2017 -0500 |
tree | 45d936043abc929f636b3b11a9b23ed966b2cc2f | |
parent | 85ecab1e91903273027e46b4d02c29fcff167a1a [diff] |
kconfig/symbol.c: use correct pointer type argument for sizeof sym_arr is of type struct symbol **. So in malloc we need sizeof(struct symbol *). The problem was indicated by coccinelle. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>