summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/musl/musl
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2019-03-04 20:37:00 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-03-06 10:39:25 +0000
commitb35846c104d15e29edace0e159cb6c105d13cd59 (patch)
tree5fdd3515d7e9b1cf480939275a6451242182adf4 /meta/recipes-core/musl/musl
parent206ca252c64eb0048f05da6933b5923b2346ef09 (diff)
downloadpoky-b35846c104d15e29edace0e159cb6c105d13cd59.tar.gz
musl: Update for few bugfixes
We have seen/reported few dlopen related fixes which has been fixed upstream, therefore upgrade all set of changes https://git.musl-libc.org/cgit/musl/log/?qt=range&q=6516282d2adfad2c7e66d854cde3357120c75dbd..43e7efb46555f13a556d92944ac05c19b8929b60 (From OE-Core rev: 7930f114aff8e00e777a26656e465f1fe43780b5) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/musl/musl')
-rw-r--r--meta/recipes-core/musl/musl/out_of_bounds_read.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/meta/recipes-core/musl/musl/out_of_bounds_read.patch b/meta/recipes-core/musl/musl/out_of_bounds_read.patch
deleted file mode 100644
index a681cc284e..0000000000
--- a/meta/recipes-core/musl/musl/out_of_bounds_read.patch
+++ /dev/null
@@ -1,20 +0,0 @@
1Fix out of bounds read
2
3self->dtv hasn't been extended yet
4
5Upstream-Status: Pending
6Signed-off-by: Khem Raj <raj.khem@gmail.com>
7
8diff --git a/ldso/dynlink.c b/ldso/dynlink.c
9index e2c3259f..b23ea0df 100644
10--- a/ldso/dynlink.c
11+++ b/ldso/dynlink.c
12@@ -1374,7 +1376,7 @@ static void install_new_tls(void)
13 }
14 /* Install new dtls into the enlarged, uninstalled dtv copies. */
15 for (p=head; ; p=p->next) {
16- if (!p->tls_id || self->dtv[p->tls_id]) continue;
17+ if (p->tls_id <= old_cnt) continue;
18 unsigned char *mem = p->new_tls;
19 for (j=0; j<i; j++) {
20 unsigned char *new = mem;