diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-03-26 15:20:44 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-03-26 15:20:44 +0100 |
commit | be6af527e25ed548a392c78ea54942555bed94c1 (patch) | |
tree | 5c330e326db87e1a59922e925b9c90e2814687a2 /erts/emulator | |
parent | 26eba549b2adc29bab37a5edd7aa96b42399936e (diff) | |
download | otp-be6af527e25ed548a392c78ea54942555bed94c1.tar.gz otp-be6af527e25ed548a392c78ea54942555bed94c1.tar.bz2 otp-be6af527e25ed548a392c78ea54942555bed94c1.zip |
erts: Fix missing case in make_internal_hash
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/beam/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/utils.c b/erts/emulator/beam/utils.c index cb4ef2b376..8fc8962e4f 100644 --- a/erts/emulator/beam/utils.c +++ b/erts/emulator/beam/utils.c @@ -1705,6 +1705,7 @@ make_internal_hash(Eterm term) } goto pop_next; } + case HAMT_SUBTAG_HEAD_ARRAY: case HAMT_SUBTAG_HEAD_BITMAP: size = *ptr++; UINT32_HASH(size, HCONST_16); |