kmodloader: Increase path array size to make it always fit
authorHauke Mehrtens <hauke@hauke-m.de>
Sat, 15 Jun 2019 21:49:28 +0000 (23:49 +0200)
committerHauke Mehrtens <hauke@hauke-m.de>
Sun, 16 Jun 2019 13:42:32 +0000 (15:42 +0200)
commit4df34a4d0d5183135217fc8280faae8e697147bc
tree040fe7987130f8543ec23ace4d5dc28ae64d01e2
parent5130fa4d9c5d15d643506f906927b209d7690a83
kmodloader: Increase path array size to make it always fit

When DEF_MOD_PATH (10 bytes), s (max 255 bytes) and ver.release (max 64
bytes) are all written into path, 256 bytes will not fit, increase the
available size. All given sizes are given without terminating NULL byte
and we add one byte to store the NULL byte.

GCC 9.1 warns about this condition and we treat warnings as errors in
ubox.

Reported-by: Joseph Benden <joe@benden.us>
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
kmodloader.c