]> git.baikalelectronics.ru Git - uboot.git/commit
lib: Fix a few bugs in trailing_strtoln()
authorSimon Glass <sjg@chromium.org>
Mon, 25 Apr 2022 05:30:57 +0000 (23:30 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 25 Apr 2022 14:00:03 +0000 (10:00 -0400)
commit0b3f64c1a86dc35c19986a0f4fff3aea0d236f10
tree333f3a7ff758dc6b9a32207fc8061c8f15bcca8a
parent4e044501e998eb624c86ca226a9cdfa003909f6f
lib: Fix a few bugs in trailing_strtoln()

At present this has a minor bug in that it reads the byte before the
start of the string, if it is empty. Also it doesn't handle a
non-numeric prefix which is only one character long.

Fix these bugs with a reworked implementation. Add a test for the second
case. The first one is hard to test.

Signed-off-by: Simon Glass <sjg@chromium.org>
include/vsprintf.h
lib/strto.c
test/str_ut.c