aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_bif_info.c
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2015-11-17 15:25:22 +0100
committerRickard Green <[email protected]>2015-12-08 14:47:46 +0100
commitcc3cc025f43a00281d2f836e12c2e1627cd50145 (patch)
treead10f44ae7f07c4cc4e8a3d7adc39e43f0ef943b /erts/emulator/beam/erl_bif_info.c
parent6ba10e6d64477a4c470baa079eaaf2b20a746747 (diff)
downloadotp-cc3cc025f43a00281d2f836e12c2e1627cd50145.tar.gz
otp-cc3cc025f43a00281d2f836e12c2e1627cd50145.tar.bz2
otp-cc3cc025f43a00281d2f836e12c2e1627cd50145.zip
Fix process_info(_, off_heap_message_queue)
Diffstat (limited to 'erts/emulator/beam/erl_bif_info.c')
-rw-r--r--erts/emulator/beam/erl_bif_info.c2
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;