diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-19 14:44:05 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-19 14:44:05 +0000 |
commit | d237a7de13715ebc8a516e399c8b76daf9aa3e5c (patch) | |
tree | d89b303a3502f4e61881f471f50e18fed49be7c8 /openwrt/package/busybox/patches | |
parent | 1934a722a9e86d048d24706d10e6a3b54b6d4b9f (diff) |
fix ipkg segfaults
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2732 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/busybox/patches')
-rw-r--r-- | openwrt/package/busybox/patches/911-ipkg.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/busybox/patches/911-ipkg.patch b/openwrt/package/busybox/patches/911-ipkg.patch index 66579e4fc..c9fc6b8b6 100644 --- a/openwrt/package/busybox/patches/911-ipkg.patch +++ b/openwrt/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 |