diff options
author | Adrian Dudau <adrian.dudau@enea.com> | 2014-06-26 14:36:22 +0200 |
---|---|---|
committer | Adrian Dudau <adrian.dudau@enea.com> | 2014-06-26 15:32:53 +0200 |
commit | f4cf9fe05bb3f32fabea4e54dd92d368967a80da (patch) | |
tree | 487180fa9866985ea7b28e625651765d86f515c3 /meta/recipes-extended/bc/files/fix-segment-fault.patch | |
download | poky-f4cf9fe05bb3f32fabea4e54dd92d368967a80da.tar.gz |
initial commit for Enea Linux 4.0
Migrated from the internal git server on the daisy-enea branch
Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'meta/recipes-extended/bc/files/fix-segment-fault.patch')
-rw-r--r-- | meta/recipes-extended/bc/files/fix-segment-fault.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-extended/bc/files/fix-segment-fault.patch b/meta/recipes-extended/bc/files/fix-segment-fault.patch new file mode 100644 index 0000000000..20c0da2ebe --- /dev/null +++ b/meta/recipes-extended/bc/files/fix-segment-fault.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | when run command such as 'echo "a = 13" | bc -l', it segmentation faults. | ||
4 | This patch is from http://www.mail-archive.com/blfs-support@linuxfromscratch.org/msg04602.html. | ||
5 | |||
6 | Signed-off-by: Kai Kang <kai.kang@windriver.com> | ||
7 | |||
8 | --- bc-1.06/lib/number.c.orig 2003-09-26 21:14:02.000000000 +0000 | ||
9 | +++ bc-1.06/lib/number.c 2003-09-26 21:14:26.000000000 +0000 | ||
10 | @@ -34,6 +34,7 @@ | ||
11 | #include <number.h> | ||
12 | #include <assert.h> | ||
13 | #include <stdlib.h> | ||
14 | +#include <string.h> | ||
15 | #include <ctype.h>/* Prototypes needed for external utility routines. */ | ||
16 | |||
17 | #define bc_rt_warn rt_warn | ||
18 | --- bc-1.06/bc/load.c.orig 2003-09-26 21:14:14.000000000 +0000 | ||
19 | +++ bc-1.06/bc/load.c 2003-09-26 21:14:26.000000000 +0000 | ||
20 | @@ -156,7 +156,7 @@ | ||
21 | long label_no; | ||
22 | long vaf_name; /* variable, array or function number. */ | ||
23 | long func; | ||
24 | - program_counter save_adr; | ||
25 | + static program_counter save_adr; | ||
26 | |||
27 | /* Initialize. */ | ||
28 | str = code; | ||