diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-04-01 12:39:09 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2017-04-01 12:39:10 +0530 |
commit | 622222846a2e6ffbcd02cb46cb5f29c48fe4a466 (patch) | |
tree | 1bca80338aca6dc4d1afe0f211e42aeef50d6ce4 /ChangeLog | |
parent | 1361e98d5602e8b78cca019952d4a3438d68a239 (diff) | |
download | glibc-622222846a2e6ffbcd02cb46cb5f29c48fe4a466.zip glibc-622222846a2e6ffbcd02cb46cb5f29c48fe4a466.tar.gz glibc-622222846a2e6ffbcd02cb46cb5f29c48fe4a466.tar.bz2 |
Call the right helper function when setting mallopt M_ARENA_MAX (BZ #21338)
Fixes a typo introduced in commit
be7991c0705e35b4d70a419d117addcd6c627319. This caused
mallopt(M_ARENA_MAX) as well as the environment variable
MALLOC_ARENA_MAX to not work as intended because it set the
wrong internal parameter.
[BZ #21338]
* malloc/malloc.c: Call do_set_arena_max for M_ARENA_MAX
instead of incorrect do_set_arena_test
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2017-04-01 Wladimir van der Laan <laanwj@gmail.com> + + [BZ# 21338] + * malloc/malloc.c: Call do_set_arena_max for M_ARENA_MAX + instead of incorrect do_set_arena_test + 2017-03-31 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> * math/math.h: Fix check for __MATH_DECLARE_LDOUBLE. |