diff options
author | Mike Westerhof <mwester@dls.net> | 2008-11-29 20:23:19 -0600 |
---|---|---|
committer | Mike Westerhof <mwester@dls.net> | 2008-11-29 20:23:19 -0600 |
commit | 9572f13632296a0b39ff0ea40556d8889f061764 (patch) | |
tree | a920aeeffcd32b0ac1abe8a86dae32e3722e36e5 /packages/busybox/busybox-1.11.3 | |
parent | 6818e22214c56ce8a668f24a7a1f12921dbbaa76 (diff) |
busybox-1.11.3: fix segfault with fdisk command
(cherrypicked patch from newer busybox version)
Diffstat (limited to 'packages/busybox/busybox-1.11.3')
-rw-r--r-- | packages/busybox/busybox-1.11.3/fdisk_lineedit_segfault.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/busybox/busybox-1.11.3/fdisk_lineedit_segfault.patch b/packages/busybox/busybox-1.11.3/fdisk_lineedit_segfault.patch new file mode 100644 index 0000000000..633153f1ce --- /dev/null +++ b/packages/busybox/busybox-1.11.3/fdisk_lineedit_segfault.patch @@ -0,0 +1,12 @@ +--- old/libbb/lineedit.c 2008/09/27 01:28:56 23530 ++++ new/libbb/lineedit.c 2008/11/02 00:41:05 23898 +@@ -1412,7 +1412,8 @@ + if ((state->flags & SAVE_HISTORY) && state->hist_file) + load_history(state->hist_file); + #endif +- state->cur_history = state->cnt_history; ++ if (state->flags & DO_HISTORY) ++ state->cur_history = state->cnt_history; + + /* prepare before init handlers */ + cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */ |