[oe-commits] [openembedded-core] 04/16: musl: Update for few bugfixes

git at git.openembedded.org git at git.openembedded.org
Wed Mar 6 00:16:34 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 7930f114aff8e00e777a26656e465f1fe43780b5
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Mon Mar 4 20:37:00 2019 -0800

    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
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-core/musl/musl/out_of_bounds_read.patch | 20 --------------------
 meta/recipes-core/musl/musl_git.bb                   |  3 +--
 2 files changed, 1 insertion(+), 22 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 a681cc2..0000000
--- a/meta/recipes-core/musl/musl/out_of_bounds_read.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Fix out of bounds read
-
-self->dtv hasn't been extended yet
-
-Upstream-Status: Pending
-Signed-off-by: Khem Raj <raj.khem at gmail.com>
-
-diff --git a/ldso/dynlink.c b/ldso/dynlink.c
-index e2c3259f..b23ea0df 100644
---- a/ldso/dynlink.c
-+++ b/ldso/dynlink.c
-@@ -1374,7 +1376,7 @@ static void install_new_tls(void)
- 	}
- 	/* Install new dtls into the enlarged, uninstalled dtv copies. */
- 	for (p=head; ; p=p->next) {
--		if (!p->tls_id || self->dtv[p->tls_id]) continue;
-+		if (p->tls_id <= old_cnt) continue;
- 		unsigned char *mem = p->new_tls;
- 		for (j=0; j<i; j++) {
- 			unsigned char *new = mem;
diff --git a/meta/recipes-core/musl/musl_git.bb b/meta/recipes-core/musl/musl_git.bb
index 6a72b7d..2d8dab9 100644
--- a/meta/recipes-core/musl/musl_git.bb
+++ b/meta/recipes-core/musl/musl_git.bb
@@ -4,7 +4,7 @@
 require musl.inc
 inherit linuxloader
 
-SRCREV = "6516282d2adfad2c7e66d854cde3357120c75dbd"
+SRCREV = "43e7efb46555f13a556d92944ac05c19b8929b60"
 
 BASEVER = "1.1.21"
 
@@ -15,7 +15,6 @@ PV = "${BASEVER}+git${SRCPV}"
 SRC_URI = "git://git.musl-libc.org/musl \
            file://0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch \
            file://0002-ldso-Use-syslibdir-and-libdir-as-default-pathes-to-l.patch \
-           file://out_of_bounds_read.patch \
           "
 
 S = "${WORKDIR}/git"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list