diff options
author | Rickard Green <[email protected]> | 2015-11-17 15:25:22 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2015-12-08 14:47:46 +0100 |
commit | cc3cc025f43a00281d2f836e12c2e1627cd50145 (patch) | |
tree | ad10f44ae7f07c4cc4e8a3d7adc39e43f0ef943b | |
parent | 6ba10e6d64477a4c470baa079eaaf2b20a746747 (diff) | |
download | otp-cc3cc025f43a00281d2f836e12c2e1627cd50145.tar.gz otp-cc3cc025f43a00281d2f836e12c2e1627cd50145.tar.bz2 otp-cc3cc025f43a00281d2f836e12c2e1627cd50145.zip |
Fix process_info(_, off_heap_message_queue)
-rw-r--r-- | erts/emulator/beam/erl_bif_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_bif_info.c b/erts/emulator/beam/erl_bif_info.c index 1eb106a551..3fe8aed50e 100644 --- a/erts/emulator/beam/erl_bif_info.c +++ b/erts/emulator/beam/erl_bif_info.c @@ -1497,7 +1497,7 @@ process_info_aux(Process *BIF_P, } case am_off_heap_message_queue: - res = BIF_P->flags & F_OFF_HEAP_MSGQ ? am_true : am_false; + res = rp->flags & F_OFF_HEAP_MSGQ ? am_true : am_false; hp = HAlloc(BIF_P, 3); break; |