aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/911-ipkg.patch
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-12-19 14:44:05 +0000
committerNicolas Thill <nico@openwrt.org>2005-12-19 14:44:05 +0000
commit9328c9c029b8d1647a2cdfee3ea4b6e39a1a6f31 (patch)
treec84dfb17996a197f3afc996f0975da8f4b9dcfdf /package/busybox/patches/911-ipkg.patch
parent322e8656e9b80a117d79bdebebd7ffe138cc376f (diff)
downloadmaster-187ad058-9328c9c029b8d1647a2cdfee3ea4b6e39a1a6f31.tar.gz
master-187ad058-9328c9c029b8d1647a2cdfee3ea4b6e39a1a6f31.tar.bz2
master-187ad058-9328c9c029b8d1647a2cdfee3ea4b6e39a1a6f31.zip
fix ipkg segfaults
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2732 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/patches/911-ipkg.patch')
-rw-r--r--package/busybox/patches/911-ipkg.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/busybox/patches/911-ipkg.patch b/package/busybox/patches/911-ipkg.patch
index 66579e4fc1..c9fc6b8b61 100644
--- a/package/busybox/patches/911-ipkg.patch
+++ b/package/busybox/patches/911-ipkg.patch
@@ -12791,7 +12791,7 @@ diff -ruN busybox-1.1.0-pre1-old/archival/libipkg/sprintf_alloc.h busybox-1.1.0-
+
+#include "libbb.h"
+
-+#define sprintf_alloc bb_xasprintf
++#define sprintf_alloc(str, fmt, args...) *str = bb_xasprintf(fmt, ## args)
+
+#endif
diff -ruN busybox-1.1.0-pre1-old/archival/libipkg/str_list.c busybox-1.1.0-pre1-new/archival/libipkg/str_list.c