]> git.baikalelectronics.ru Git - kernel.git/commit
kconfig/symbol.c: use correct pointer type argument for sizeof
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Wed, 8 Nov 2017 21:09:59 +0000 (22:09 +0100)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 23 Nov 2017 14:12:02 +0000 (23:12 +0900)
commit53f7676d47461b5942e98a4cbf1472f5f3a2f6f1
treeb1ba5b5332108d1493aa5eedeb695092f953bed5
parentfe1249698537920305c6f5cd6525fb0646273f62
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>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/kconfig/symbol.c