]> git.ipfire.org Git - thirdparty/u-boot.git/commit
cli: panic when failed to allocate memory for the history buffer
authorHanyuan Zhao <hanyuan-z@qq.com>
Tue, 5 Mar 2024 07:37:33 +0000 (15:37 +0800)
committerTom Rini <trini@konsulko.com>
Wed, 13 Mar 2024 16:40:43 +0000 (12:40 -0400)
commit44951340309d0dca73c05fc61406a1e839d1da93
tree16db46cea205f23cfbf2d0c125bf450f5c687ebb
parentefdf91c8eac143ff332c64ce58186f68ba396ae6
cli: panic when failed to allocate memory for the history buffer

This commit simply modifies the history initialize function,
replacing the return value by panic with reasons. The calling
chains of hist_init don't have steps explicitly throwing or
dealing with the ENOMEM error, and once the init fails, the
whole system is died. Using panic here to provide error
information instead.

Signed-off-by: Hanyuan Zhao <hanyuan-z@qq.com>
common/cli_readline.c