aboutsummaryrefslogtreecommitdiff
path: root/dep/jemalloc/src/jemalloc.c
diff options
context:
space:
mode:
authorVincent-Michael <Vincent_Michael@gmx.de>2014-06-19 22:57:44 +0200
committerVincent-Michael <Vincent_Michael@gmx.de>2014-06-19 22:57:44 +0200
commit910f32d48ddbae2ec8f2e85b678ade60ff04c8fa (patch)
tree6f3a8732e335240bb26c9b5fdca0a9733090657a /dep/jemalloc/src/jemalloc.c
parent34572492dd1394dbeaf19bb697a7af8cbf0b6ef7 (diff)
parent57069b393d7698bc0f860ad1b2d0b16785f9e8e0 (diff)
Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4
Conflicts: src/server/game/Entities/Player/Player.cpp src/server/game/Entities/Unit/Unit.cpp
Diffstat (limited to 'dep/jemalloc/src/jemalloc.c')
-rw-r--r--dep/jemalloc/src/jemalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dep/jemalloc/src/jemalloc.c b/dep/jemalloc/src/jemalloc.c
index 563d99f8816..204778bc89d 100644
--- a/dep/jemalloc/src/jemalloc.c
+++ b/dep/jemalloc/src/jemalloc.c
@@ -2076,7 +2076,7 @@ a0alloc(size_t size, bool zero)
if (size <= arena_maxclass)
return (arena_malloc(arenas[0], size, zero, false));
else
- return (huge_malloc(size, zero));
+ return (huge_malloc(size, zero, huge_dss_prec_get(arenas[0])));
}
void *