From: jow Date: Tue, 15 Nov 2011 17:55:01 +0000 (+0000) Subject: [backfire] busybox: backport r29156 X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=a2f9bdec84d2e3b85f5668347ebc4728ad9e070e [backfire] busybox: backport r29156 git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@29159 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/busybox/Makefile b/package/busybox/Makefile index 3289bd679..0706480b6 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=busybox PKG_VERSION:=1.15.3 -PKG_RELEASE:=3.2 +PKG_RELEASE:=3.3 PKG_FLAGS:=essential PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 diff --git a/package/busybox/patches/700-hexdump_segfault_fix.patch b/package/busybox/patches/700-hexdump_segfault_fix.patch new file mode 100644 index 000000000..9bb9ad88d --- /dev/null +++ b/package/busybox/patches/700-hexdump_segfault_fix.patch @@ -0,0 +1,11 @@ +--- a/libbb/dump.c ++++ b/libbb/dump.c +@@ -304,7 +304,7 @@ static void rewrite(priv_dumper_t *dumpe + ) { + fu->reps += (dumper->blocksize - fs->bcnt) / fu->bcnt; + } +- if (fu->reps > 1) { ++ if (fu->reps > 1 && fu->nextpr) { + for (pr = fu->nextpr;; pr = pr->nextpr) + if (!pr->nextpr) + break;