1
0
Fork 0

rslib: decode_rs: Fix length parameter check

The length of the data load must be at least one. Or in other words,
there must be room for at least 1 data and nroots parity symbols after
shortening the RS code.

Signed-off-by: Ferdinand Blomqvist <ferdinand.blomqvist@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20190620141039.9874-4-ferdinand.blomqvist@gmail.com
alistair/sunxi64-5.4-dsi
Ferdinand Blomqvist 2019-06-20 17:10:35 +03:00 committed by Thomas Gleixner
parent 2034a42d17
commit a343536f8f
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@
/* Check length parameter for validity */
pad = nn - nroots - len;
BUG_ON(pad < 0 || pad >= nn);
BUG_ON(pad < 0 || pad >= nn - nroots);
/* Does the caller provide the syndrome ? */
if (s != NULL)