diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-10-21 15:26:34 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-10-21 15:26:59 -0400 |
commit | 25b0aefa56557cbb4fc6e1e17b9776f9611cfeb6 (patch) | |
tree | c63fbc55ac5a9066a26ba1a4dc62f3454fd94f0a /sys-libs/musl/files | |
parent | dev-db/mariadb: Version bump to 10.1.8 GA (diff) | |
download | gentoo-25b0aefa56557cbb4fc6e1e17b9776f9611cfeb6.tar.gz gentoo-25b0aefa56557cbb4fc6e1e17b9776f9611cfeb6.tar.bz2 gentoo-25b0aefa56557cbb4fc6e1e17b9776f9611cfeb6.zip |
sys-libs/musl: remove older stable versions.
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'sys-libs/musl/files')
-rw-r--r-- | sys-libs/musl/files/musl-1.1.10-uselocale-0-fix.diff | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/sys-libs/musl/files/musl-1.1.10-uselocale-0-fix.diff b/sys-libs/musl/files/musl-1.1.10-uselocale-0-fix.diff deleted file mode 100644 index 2785195dc0d0..000000000000 --- a/sys-libs/musl/files/musl-1.1.10-uselocale-0-fix.diff +++ /dev/null @@ -1,25 +0,0 @@ ->From 63f4b9f18f3674124d8bcb119739fec85e6da005 Mon Sep 17 00:00:00 2001 -From: Timo Teräs <timo.teras@iki.fi> -Date: Fri, 05 Jun 2015 07:39:42 +0000 -Subject: fix uselocale((locale_t)0) not to modify locale - -commit 68630b55c0c7219fe9df70dc28ffbf9efc8021d8 made the new locale to -be assigned unconditonally resulting in crashes later on. ---- -diff --git a/src/locale/uselocale.c b/src/locale/uselocale.c -index b70a0c1..0fc5ecb 100644 ---- a/src/locale/uselocale.c -+++ b/src/locale/uselocale.c -@@ -8,9 +8,7 @@ locale_t __uselocale(locale_t new) - locale_t old = self->locale; - locale_t global = &libc.global_locale; - -- if (new == LC_GLOBAL_LOCALE) new = global; -- -- self->locale = new; -+ if (new) self->locale = new == LC_GLOBAL_LOCALE ? global : new; - - return old == global ? LC_GLOBAL_LOCALE : old; - } --- -cgit v0.9.0.3-65-g4555 |