summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/icu/files/larger-cmd-size.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/icu/files/larger-cmd-size.patch')
-rw-r--r--meta/recipes-support/icu/files/larger-cmd-size.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-support/icu/files/larger-cmd-size.patch b/meta/recipes-support/icu/files/larger-cmd-size.patch
new file mode 100644
index 0000000000..74a84f17ba
--- /dev/null
+++ b/meta/recipes-support/icu/files/larger-cmd-size.patch
@@ -0,0 +1,27 @@
1Allocate a larger memory size for cmd
2
3The length of the command line can be longer than 1024 sometimes,
4which will cause a "Segmentation fault" error.
5
6Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
7
8Upstream-Status: Pending
9---
10 tools/pkgdata/pkgdata.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/tools/pkgdata/pkgdata.c b/tools/pkgdata/pkgdata.c
14--- a/tools/pkgdata/pkgdata.c
15+++ b/tools/pkgdata/pkgdata.c
16@@ -439,7 +439,7 @@ main(int argc, char* argv[]) {
17 /* POSIX - execute makefile */
18 static int executeMakefile(const UPKGOptions *o)
19 {
20- char cmd[1024];
21+ char cmd[2048];
22 /*char pwd[1024];*/
23 const char *make;
24 int rc;
25--
261.7.10.2
27