aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2018-12-10 11:49:35 +0100
committerLukas Larsson <[email protected]>2018-12-10 11:49:41 +0100
commit3d7d66b84b69f3eb42e8bcd8dc510b6676e31cac (patch)
tree8b2f0f3bd22fad497b724e34d67aeccece3efd9a
parent754e2022059864f2c4025ab67da759bde922a066 (diff)
downloadotp-3d7d66b84b69f3eb42e8bcd8dc510b6676e31cac.tar.gz
otp-3d7d66b84b69f3eb42e8bcd8dc510b6676e31cac.tar.bz2
otp-3d7d66b84b69f3eb42e8bcd8dc510b6676e31cac.zip
erts: Use ptr_val for pointer in gc msg copy
Without this fix asserts would trigger in debug build but nothing else would break.
-rw-r--r--erts/emulator/beam/erl_gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_gc.c b/erts/emulator/beam/erl_gc.c
index d5dfb096b1..cf44640f12 100644
--- a/erts/emulator/beam/erl_gc.c
+++ b/erts/emulator/beam/erl_gc.c
@@ -2477,7 +2477,7 @@ erts_copy_one_frag(Eterm** hpp, ErlOffHeap* off_heap,
*hpp = hp;
for (i = 0; i < nrefs; i++) {
- if (is_not_immed(refs[i]) && !erts_is_literal(refs[i],boxed_val(refs[i])))
+ if (is_not_immed(refs[i]) && !erts_is_literal(refs[i],ptr_val(refs[i])))
refs[i] = offset_ptr(refs[i], offs);
}
bp->off_heap.first = NULL;