diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-02-04 16:16:30 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-02-14 14:40:57 +0100 |
commit | d7a622b57231d4e9097c790650859aa9f7364581 (patch) | |
tree | bc024c4c9eeab2ae9758ea30c4d9e3245940649d | |
parent | 256ee622249830d102c58edccf893104a4a34037 (diff) | |
download | busybox-w32-d7a622b57231d4e9097c790650859aa9f7364581.tar.gz busybox-w32-d7a622b57231d4e9097c790650859aa9f7364581.tar.bz2 busybox-w32-d7a622b57231d4e9097c790650859aa9f7364581.zip |
lineedit: fix SEGV in isk, hexedit, ed, closes 11661
fdisk, hexedit and ed calls read_line_edit in libbb/lineedit.c with NULL
as first argument. On line 2373 of lineedit.c of busybox version 1.29.3,
state->hist_file is referenced without checking the state->flag.
This causes segmentation fault on fdisk, hexedit and ed on ARM Cortex-A9.
It somehow works on x86_64.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/lineedit.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index 0a888fa70..1d5fef5ee 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c | |||
@@ -2383,13 +2383,14 @@ int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *comman | |||
2383 | timeout = st->timeout; | 2383 | timeout = st->timeout; |
2384 | } | 2384 | } |
2385 | #if MAX_HISTORY > 0 | 2385 | #if MAX_HISTORY > 0 |
2386 | if (state->flags & DO_HISTORY) { | ||
2386 | # if ENABLE_FEATURE_EDITING_SAVEHISTORY | 2387 | # if ENABLE_FEATURE_EDITING_SAVEHISTORY |
2387 | if (state->hist_file) | 2388 | if (state->hist_file) |
2388 | if (state->cnt_history == 0) | 2389 | if (state->cnt_history == 0) |
2389 | load_history(state); | 2390 | load_history(state); |
2390 | # endif | 2391 | # endif |
2391 | if (state->flags & DO_HISTORY) | ||
2392 | state->cur_history = state->cnt_history; | 2392 | state->cur_history = state->cnt_history; |
2393 | } | ||
2393 | #endif | 2394 | #endif |
2394 | 2395 | ||
2395 | /* prepare before init handlers */ | 2396 | /* prepare before init handlers */ |