1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-05 16:51:07 +03:00
openwrt-xburst/package/busybox/patches/700-hexdump_segfault_fix.patch

12 lines
309 B
Diff
Raw Normal View History

--- a/libbb/dump.c
+++ b/libbb/dump.c
@@ -301,7 +301,7 @@ static NOINLINE void rewrite(priv_dumper
) {
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;