diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-11-24 18:35:11 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-11-24 18:35:11 +0100 |
commit | bc08768e5bad4baa2eaec4c6798ead9ded0a8889 (patch) | |
tree | 4606d4e3e54c8647486fc1191519c99e7a47ed4a /erts/emulator/beam | |
parent | 5cf556df2e178ce78d0c4197a73654d593f58f92 (diff) | |
download | otp-bc08768e5bad4baa2eaec4c6798ead9ded0a8889.tar.gz otp-bc08768e5bad4baa2eaec4c6798ead9ded0a8889.tar.bz2 otp-bc08768e5bad4baa2eaec4c6798ead9ded0a8889.zip |
Fix seq_trace token copy size
Diffstat (limited to 'erts/emulator/beam')
-rw-r--r-- | erts/emulator/beam/erl_process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_process.c b/erts/emulator/beam/erl_process.c index a8b7211793..a814462668 100644 --- a/erts/emulator/beam/erl_process.c +++ b/erts/emulator/beam/erl_process.c @@ -11547,7 +11547,7 @@ send_exit_message(Process *to, ErtsProcLocks *to_locksp, #ifdef SHCOPY_SEND INITIALIZE_SHCOPY(info); term_size = copy_shared_calculate(exit_term, &info); - mp = erts_alloc_message_heap(to, to_locksp, term_size, &hp, &ohp); + mp = erts_alloc_message_heap(to, to_locksp, term_size+sz_token, &hp, &ohp); mess = copy_shared_perform(exit_term, term_size, &info, &hp, ohp); DESTROY_SHCOPY(info); #else |