From 9572f13632296a0b39ff0ea40556d8889f061764 Mon Sep 17 00:00:00 2001 From: Mike Westerhof Date: Sat, 29 Nov 2008 20:23:19 -0600 Subject: busybox-1.11.3: fix segfault with fdisk command (cherrypicked patch from newer busybox version) --- .../busybox/busybox-1.11.3/fdisk_lineedit_segfault.patch | 12 ++++++++++++ packages/busybox/busybox_1.11.3.bb | 3 ++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 packages/busybox/busybox-1.11.3/fdisk_lineedit_segfault.patch (limited to 'packages/busybox') 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 */ diff --git a/packages/busybox/busybox_1.11.3.bb b/packages/busybox/busybox_1.11.3.bb index 790bf518cc..08a4531daa 100644 --- a/packages/busybox/busybox_1.11.3.bb +++ b/packages/busybox/busybox_1.11.3.bb @@ -1,10 +1,11 @@ require busybox.inc -PR = "r0" +PR = "r1" SRC_URI = "\ http://www.busybox.net/downloads/busybox-${PV}.tar.gz \ \ file://udhcpscript.patch;patch=1 \ + file://fdisk_lineedit_segfault.patch;patch=1 \ file://busybox-cron \ file://busybox-httpd \ file://busybox-udhcpd \ -- cgit v1.2.3