aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/external.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2015-03-19 15:40:29 +0100
committerSverker Eriksson <[email protected]>2015-03-19 16:06:40 +0100
commit65c7116bb38013c3d829f21b00bf094606e46731 (patch)
tree8615027794fddcca8eda29dc551f9bd14e88a25a /erts/emulator/beam/external.c
parentc283f8035e1ac18a6d150a2013c7f929cc32bffc (diff)
downloadotp-65c7116bb38013c3d829f21b00bf094606e46731.tar.gz
otp-65c7116bb38013c3d829f21b00bf094606e46731.tar.bz2
otp-65c7116bb38013c3d829f21b00bf094606e46731.zip
erts: Fix bug in binary_to_term with more than one big map
Diffstat (limited to 'erts/emulator/beam/external.c')
-rw-r--r--erts/emulator/beam/external.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/external.c b/erts/emulator/beam/external.c
index 9a5ef56c47..458ebd8aa0 100644
--- a/erts/emulator/beam/external.c
+++ b/erts/emulator/beam/external.c
@@ -3899,7 +3899,6 @@ dec_term_atom_common:
/* Iterate through all the hamts and build tree nodes.
*/
if (hamt_list) {
- struct dec_term_hamt_placeholder* hamt = hamt_list;
ErtsHeapFactory factory;
factory.p = NULL;
@@ -3907,6 +3906,7 @@ dec_term_atom_common:
/* We assume heap will suffice (see hashmap_over_estimated_heap_size) */
do {
+ struct dec_term_hamt_placeholder* hamt = hamt_list;
*hamt->objp = erts_hashmap_from_array(&factory,
hamt->leafs,
hamt->size,